Files
umbrix/lib/singbox/service/singbox_service_provider.dart
Umbrix Developer 76a374950f feat: mobile-like window size and always-visible stats
- Changed window size to mobile phone format (400x800)
- Removed width condition for ActiveProxyFooter - now always visible
- Added run-umbrix.sh launch script with icon copying
- Stats cards now display on all screen sizes
2026-01-17 13:09:20 +03:00

10 lines
278 B
Dart

import 'package:umbrix/singbox/service/singbox_service.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';
part 'singbox_service_provider.g.dart';
@Riverpod(keepAlive: true)
SingboxService singboxService(SingboxServiceRef ref) {
return SingboxService();
}