diff --git a/packages/flutter_timeline/example/lib/apps/widgets/app.dart b/packages/flutter_timeline/example/lib/apps/widgets/app.dart index 1ac4aad..2292e17 100644 --- a/packages/flutter_timeline/example/lib/apps/widgets/app.dart +++ b/packages/flutter_timeline/example/lib/apps/widgets/app.dart @@ -32,7 +32,8 @@ class MyHomePage extends StatefulWidget { } class _MyHomePageState extends State { - var timelineService = TimelineService(postService: LocalTimelinePostService()); + var timelineService = + TimelineService(postService: LocalTimelinePostService()); var timelineOptions = options; @override diff --git a/packages/flutter_timeline/lib/src/flutter_timeline_userstory.dart b/packages/flutter_timeline/lib/src/flutter_timeline_userstory.dart index a40b7b1..4bac55c 100644 --- a/packages/flutter_timeline/lib/src/flutter_timeline_userstory.dart +++ b/packages/flutter_timeline/lib/src/flutter_timeline_userstory.dart @@ -10,13 +10,14 @@ import 'package:go_router/go_router.dart'; List getTimelineStoryRoutes({ TimelineUserStoryConfiguration? configuration, }) { - var config = configuration ?? TimelineUserStoryConfiguration( - userId: 'test_user', - service: TimelineService( - postService: LocalTimelinePostService(), - ), - optionsBuilder: (context) => const TimelineOptions(), - ); + var config = configuration ?? + TimelineUserStoryConfiguration( + userId: 'test_user', + service: TimelineService( + postService: LocalTimelinePostService(), + ), + optionsBuilder: (context) => const TimelineOptions(), + ); return [ GoRoute(