Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Eduardo Florence
2021-04-06 22:09:06 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
bed0b3b8e4ea9e5e90ac92de08a9b116f3b7879e
bed0b3b8
1 parent
039a9e73
Set darkThem equal them when darkTheme is null
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
lib/get_navigation/src/root/get_material_app.dart
lib/get_navigation/src/root/get_material_app.dart
View file @
bed0b3b
...
...
@@ -245,7 +245,8 @@ class GetMaterialApp extends StatelessWidget {
onGenerateTitle:
onGenerateTitle
,
color:
color
,
theme:
_
.
theme
??
theme
??
ThemeData
.
fallback
(),
darkTheme:
_
.
darkTheme
??
darkTheme
??
ThemeData
.
fallback
(),
darkTheme:
_
.
darkTheme
??
darkTheme
??
theme
??
ThemeData
.
fallback
(),
themeMode:
_
.
themeMode
??
themeMode
,
locale:
Get
.
locale
??
locale
,
localizationsDelegates:
localizationsDelegates
,
...
...
@@ -293,7 +294,8 @@ class GetMaterialApp extends StatelessWidget {
onGenerateTitle:
onGenerateTitle
,
color:
color
,
theme:
_
.
theme
??
theme
??
ThemeData
.
fallback
(),
darkTheme:
_
.
darkTheme
??
darkTheme
??
ThemeData
.
fallback
(),
darkTheme:
_
.
darkTheme
??
darkTheme
??
theme
??
ThemeData
.
fallback
(),
themeMode:
_
.
themeMode
??
themeMode
,
locale:
Get
.
locale
??
locale
,
localizationsDelegates:
localizationsDelegates
,
...
...
Please
register
or
login
to post a comment