- 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
15 lines
520 B
Dart
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),
|
|
);
|
|
}
|