Frontend WIP - just websocket support left

This commit is contained in:
2025-02-09 21:23:27 -07:00
parent f73bd53214
commit e7641f6aec
19 changed files with 484 additions and 132 deletions
+10
View File
@@ -0,0 +1,10 @@
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:shared_preferences/shared_preferences.dart';
part 'utility.g.dart';
@riverpod
Future<SharedPreferencesAsync> sharedPreferencesAsync(Ref ref) async {
return SharedPreferencesAsync();
}