File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
objectbox/example/flutter
objectbox_demo_relations/lib Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class MyApp extends StatelessWidget {
26
26
@override
27
27
Widget build (BuildContext context) => MaterialApp (
28
28
title: 'OB Example' ,
29
- theme: ThemeData (primarySwatch: Colors .blue ),
29
+ theme: ThemeData (primarySwatch: Colors .teal ),
30
30
home: const MyHomePage (title: 'OB Example' ),
31
31
);
32
32
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class MyApp extends StatelessWidget {
28
28
@override
29
29
Widget build (BuildContext context) => MaterialApp (
30
30
title: 'Task-list app example' ,
31
- theme: ThemeData (primarySwatch: Colors .blue ),
31
+ theme: ThemeData (primarySwatch: Colors .teal ),
32
32
home: const MyHomePage (title: 'ObjectBox Example' ),
33
33
);
34
34
}
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ class _TaskInputState extends State<TaskInput> {
79
79
items: tags.map (buildMenuItem).toList (),
80
80
underline: Container (
81
81
height: 2 ,
82
- color: Colors .blueAccent ,
82
+ color: Theme . of (context).colorScheme.primary ,
83
83
),
84
84
onChanged: (value) => {
85
85
setState (
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class MyApp extends StatelessWidget {
26
26
@override
27
27
Widget build (BuildContext context) => MaterialApp (
28
28
title: 'OB Example (sync)' ,
29
- theme: ThemeData (primarySwatch: Colors .blue ),
29
+ theme: ThemeData (primarySwatch: Colors .teal ),
30
30
home: const MyHomePage (title: 'OB Example (sync)' ),
31
31
);
32
32
}
You can’t perform that action at this time.
0 commit comments