Files
umbrix/lib/features/proxy/data/proxy_data_providers.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

15 lines
520 B
Dart

import 'package:umbrix/core/http_client/http_client_provider.dart';
import 'package:umbrix/features/proxy/data/proxy_repository.dart';
import 'package:umbrix/singbox/service/singbox_service_provider.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';
part 'proxy_data_providers.g.dart';
@Riverpod(keepAlive: true)
ProxyRepository proxyRepository(ProxyRepositoryRef ref) {
return ProxyRepositoryImpl(
singbox: ref.watch(singboxServiceProvider),
client: ref.watch(httpClientProvider),
);
}