- 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
11 lines
400 B
Dart
11 lines
400 B
Dart
import 'package:umbrix/features/stats/data/stats_repository.dart';
|
|
import 'package:umbrix/singbox/service/singbox_service_provider.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'stats_data_providers.g.dart';
|
|
|
|
@Riverpod(keepAlive: true)
|
|
StatsRepository statsRepository(StatsRepositoryRef ref) {
|
|
return StatsRepositoryImpl(singbox: ref.watch(singboxServiceProvider));
|
|
}
|