feat: implement refresh button and jump-to-person plus better ws reconnect

This commit is contained in:
2024-11-05 22:24:03 +01:00
parent 61f9eab0a5
commit b84e9d307d
4 changed files with 353 additions and 143 deletions

9
lib/refresh_cubit.dart Normal file
View File

@ -0,0 +1,9 @@
import 'package:flutter_bloc/flutter_bloc.dart';
class RefreshCubit extends Cubit<DateTime> {
RefreshCubit() : super(DateTime.now());
void triggerRefresh() {
emit(DateTime.now());
}
}