fix(ci): run dart format and flutter analyze

This commit is contained in:
Vick Top 2024-02-13 16:16:39 +01:00
parent 115884a0f4
commit 604c082827
2 changed files with 10 additions and 8 deletions

View file

@ -32,7 +32,8 @@ class MyHomePage extends StatefulWidget {
}
class _MyHomePageState extends State<MyHomePage> {
var timelineService = TimelineService(postService: LocalTimelinePostService());
var timelineService =
TimelineService(postService: LocalTimelinePostService());
var timelineOptions = options;
@override

View file

@ -10,13 +10,14 @@ import 'package:go_router/go_router.dart';
List<GoRoute> 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>[
GoRoute(