optimizations

This commit is contained in:
mertalev
2025-07-30 19:30:42 -04:00
parent 196f2a72f4
commit 6cea779b2d
23 changed files with 7004 additions and 329 deletions
@@ -16,15 +16,14 @@ class MapBottomSheet extends ConsumerWidget {
return BaseBottomSheet(
initialChildSize: 0.25,
shouldCloseOnMinExtent: false,
actions: [],
actions: const [],
slivers: [
SliverFillRemaining(
child: ProviderScope(
key: ObjectKey(bounds),
overrides: [
timelineServiceProvider.overrideWith((ref) {
final timelineService =
ref.watch(timelineFactoryProvider).map(bounds);
final timelineService = ref.watch(timelineFactoryProvider).map(bounds);
ref.onDispose(timelineService.dispose);
return timelineService;
}),