mirror of
https://github.com/Iconica-Development/flutter_timeline.git
synced 2025-05-19 10:33:44 +02:00
fix(ci): run dart format and flutter analyze
This commit is contained in:
parent
115884a0f4
commit
604c082827
2 changed files with 10 additions and 8 deletions
|
@ -32,7 +32,8 @@ class MyHomePage extends StatefulWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
class _MyHomePageState extends State<MyHomePage> {
|
class _MyHomePageState extends State<MyHomePage> {
|
||||||
var timelineService = TimelineService(postService: LocalTimelinePostService());
|
var timelineService =
|
||||||
|
TimelineService(postService: LocalTimelinePostService());
|
||||||
var timelineOptions = options;
|
var timelineOptions = options;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
|
@ -10,7 +10,8 @@ import 'package:go_router/go_router.dart';
|
||||||
List<GoRoute> getTimelineStoryRoutes({
|
List<GoRoute> getTimelineStoryRoutes({
|
||||||
TimelineUserStoryConfiguration? configuration,
|
TimelineUserStoryConfiguration? configuration,
|
||||||
}) {
|
}) {
|
||||||
var config = configuration ?? TimelineUserStoryConfiguration(
|
var config = configuration ??
|
||||||
|
TimelineUserStoryConfiguration(
|
||||||
userId: 'test_user',
|
userId: 'test_user',
|
||||||
service: TimelineService(
|
service: TimelineService(
|
||||||
postService: LocalTimelinePostService(),
|
postService: LocalTimelinePostService(),
|
||||||
|
|
Loading…
Reference in a new issue