fix: view in timeline does not jump to the timeline correctly (#23428)

This commit is contained in:
Alex 2025-10-31 12:24:41 -05:00 committed by GitHub
parent f5d7e5acca
commit ceb36a304d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 35 additions and 7 deletions

View file

@ -5,3 +5,4 @@ final inLockedViewProvider = StateProvider<bool>((ref) => false);
final currentRouteNameProvider = StateProvider<String?>((ref) => null);
final previousRouteNameProvider = StateProvider<String?>((ref) => null);
final previousRouteDataProvider = StateProvider<RouteSettings?>((ref) => null);
final currentTabIndexProvider = StateProvider<int>((ref) => 0);