fix: ios color?
This commit is contained in:
parent
94b387db43
commit
d46d9c0ca2
1 changed files with 10 additions and 9 deletions
|
@ -79,21 +79,22 @@ class MyApp extends StatelessWidget {
|
|||
: lightColorScheme,
|
||||
),
|
||||
child: CupertinoApp(
|
||||
theme: CupertinoThemeData(
|
||||
textTheme: CupertinoTextThemeData(
|
||||
primaryColor:
|
||||
((MediaQuery.of(context).platformBrightness ==
|
||||
Brightness.dark)
|
||||
? darkColorScheme
|
||||
: lightColorScheme)
|
||||
.onPrimary)),
|
||||
localizationsDelegates: const [
|
||||
AppLocalizations.delegate,
|
||||
...GlobalMaterialLocalizations.delegates,
|
||||
...GlobalCupertinoLocalizations.delegates,
|
||||
],
|
||||
title: 'Prašule',
|
||||
home: HomeView(),
|
||||
home: DefaultTextStyle(
|
||||
style: TextStyle(
|
||||
color: ((MediaQuery.of(context).platformBrightness ==
|
||||
Brightness.dark)
|
||||
? darkColorScheme
|
||||
: lightColorScheme)
|
||||
.onPrimary,
|
||||
),
|
||||
child: const HomeView(),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue