Fix iOS dark mode
This commit is contained in:
parent
61f50af28e
commit
70a36d0502
2 changed files with 11 additions and 1 deletions
|
|
@ -28,6 +28,13 @@ class MainApp extends StatelessWidget {
|
|||
theme: ThemeData(
|
||||
colorScheme: ColorScheme.fromSeed(
|
||||
seedColor: Colors.green,
|
||||
brightness: Brightness.light,
|
||||
),
|
||||
),
|
||||
darkTheme: ThemeData(
|
||||
colorScheme: ColorScheme.fromSeed(
|
||||
seedColor: Colors.green,
|
||||
brightness: Brightness.dark,
|
||||
),
|
||||
),
|
||||
home: Stack(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue