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
Jonatas
2020-09-30 00:21:31 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b776e985467548eca13610a3f2359ab8d3c554ac
b776e985
1 parent
0687b6ce
fix onStart called twice on smartManagement.onlyBuilders
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
packages/get_state_manager/lib/src/simple/get_state.dart
packages/get_state_manager/lib/src/simple/get_state.dart
View file @
b776e98
...
...
@@ -192,9 +192,10 @@ class _GetBuilderState<T extends GetxController> extends State<GetBuilder<T>>
controller
?.
onStart
();
}
if
(
widget
.
global
&&
Get
.
smartManagement
==
SmartManagement
.
onlyBuilder
)
{
controller
?.
onStart
();
}
// if (widget.global && Get.smartManagement ==
//SmartManagement.onlyBuilder) {
// controller?.onStart();
// }
_subscribeToController
();
}
...
...
Please
register
or
login
to post a comment