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
Caio Louro
2022-01-28 11:06:16 -0500
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f7621b254df3bcce00d08a2601424fa15d557826
f7621b25
1 parent
5e60945e
removed unnecessary '!' operators
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
lib/get_navigation/src/root/get_cupertino_app.dart
lib/get_navigation/src/root/get_material_app.dart
lib/get_navigation/src/root/get_cupertino_app.dart
View file @
f7621b2
...
...
@@ -199,7 +199,7 @@ class GetCupertinoApp extends StatelessWidget {
Get
.
routeInformationParser
=
null
;
},
initState:
(
i
)
{
Get
.
engine
!
.
addPostFrameCallback
((
timeStamp
)
{
Get
.
engine
.
addPostFrameCallback
((
timeStamp
)
{
onReady
?.
call
();
});
if
(
locale
!=
null
)
Get
.
locale
=
locale
;
...
...
lib/get_navigation/src/root/get_material_app.dart
View file @
f7621b2
...
...
@@ -215,7 +215,7 @@ class GetMaterialApp extends StatelessWidget {
initState:
(
i
)
{
// Get.routerDelegate = routerDelegate;
// Get.routeInformationParser = routeInformationParser;
Get
.
engine
!
.
addPostFrameCallback
((
timeStamp
)
{
Get
.
engine
.
addPostFrameCallback
((
timeStamp
)
{
onReady
?.
call
();
});
if
(
locale
!=
null
)
Get
.
locale
=
locale
;
...
...
Please
register
or
login
to post a comment