You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
The root widget HomeScreen widget gets initialized twice at app start.
ie. initState() runs twice which is affects all it children, making them initialize freshly.
Possible cause
The implementation of the DropdownBanner package.
The text was updated successfully, but these errors were encountered:
In the above file, line 38 (as of now) you can see that a global key variable is being declared in the build method, which very bad practice and also causes issues. This has been fixed in #198 by @avinath1998
Description
The root widget
HomeScreen
widget gets initialized twice at app start.ie.
initState()
runs twice which is affects all it children, making them initialize freshly.Possible cause
The implementation of the DropdownBanner package.
The text was updated successfully, but these errors were encountered: