fix: optimization for iOS #30
2 changed files with 13 additions and 12 deletions
|
@ -78,23 +78,14 @@ class MyApp extends StatelessWidget {
|
||||||
? darkColorScheme
|
? darkColorScheme
|
||||||
: lightColorScheme,
|
: lightColorScheme,
|
||||||
),
|
),
|
||||||
child: CupertinoApp(
|
child: const CupertinoApp(
|
||||||
localizationsDelegates: const [
|
localizationsDelegates: [
|
||||||
AppLocalizations.delegate,
|
AppLocalizations.delegate,
|
||||||
...GlobalMaterialLocalizations.delegates,
|
...GlobalMaterialLocalizations.delegates,
|
||||||
...GlobalCupertinoLocalizations.delegates,
|
...GlobalCupertinoLocalizations.delegates,
|
||||||
],
|
],
|
||||||
title: 'Prašule',
|
title: 'Prašule',
|
||||||
home: DefaultTextStyle(
|
home: HomeView(),
|
||||||
style: TextStyle(
|
|
||||||
color: ((MediaQuery.of(context).platformBrightness ==
|
|
||||||
Brightness.dark)
|
|
||||||
? darkColorScheme
|
|
||||||
: lightColorScheme)
|
|
||||||
.onPrimary,
|
|
||||||
),
|
|
||||||
child: const HomeView(),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -318,6 +318,11 @@ class _HomeViewState extends State<HomeView> {
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: AppLocalizations.of(context)
|
text: AppLocalizations.of(context)
|
||||||
.balanceStatusA,
|
.balanceStatusA,
|
||||||
|
style: TextStyle(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.onBackground,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
TextSpan(
|
TextSpan(
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
|
@ -363,6 +368,11 @@ class _HomeViewState extends State<HomeView> {
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: AppLocalizations.of(context)
|
text: AppLocalizations.of(context)
|
||||||
.balanceStatusB,
|
.balanceStatusB,
|
||||||
|
style: TextStyle(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.onBackground,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue