File tree Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class AppScaffold extends StatelessWidget {
19
19
label: 'Search' ,
20
20
),
21
21
],
22
- // MAIN BODY
22
+ // MAIN BODY
23
23
smallBody: (context) => const Placeholder (),
24
24
body: (context) => const Placeholder (),
25
25
largeBody: (context) => const Placeholder (),
@@ -28,7 +28,6 @@ class AppScaffold extends StatelessWidget {
28
28
smallSecondaryBody: AdaptiveScaffold .emptyBuilder,
29
29
secondaryBody: AdaptiveScaffold .emptyBuilder,
30
30
largeSecondaryBody: AdaptiveScaffold .emptyBuilder,
31
-
32
31
);
33
32
}
34
33
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ part 'search_state.dart';
7
7
class SearchBloc extends Bloc <SearchEvent , SearchState > {
8
8
SearchBloc () : super (SearchInitial ()) {
9
9
on < SearchEvent > ((event, emit) {
10
- // TODO: implement event handler
10
+ // TODO(fulleni) : implement event handler
11
11
});
12
12
}
13
13
}
Original file line number Diff line number Diff line change 1
1
part of 'theme_cubit.dart' ;
2
2
3
3
abstract class ThemeState {
4
- final ThemeData themeData;
5
-
6
4
const ThemeState ({required this .themeData});
5
+ final ThemeData themeData;
7
6
}
8
7
9
8
class LightThemeState extends ThemeState {
Original file line number Diff line number Diff line change @@ -318,7 +318,7 @@ packages:
318
318
source: hosted
319
319
version: "0.11.1"
320
320
meta:
321
- dependency: transitive
321
+ dependency: "direct main"
322
322
description:
323
323
name: meta
324
324
sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ dependencies:
18
18
go_router : ^14.8.1
19
19
google_fonts : ^6.2.1
20
20
intl : ^0.19.0
21
+ meta : ^1.16.0
21
22
22
23
dev_dependencies :
23
24
bloc_test : ^10.0.0
You can’t perform that action at this time.
0 commit comments