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
On Debug Console, "Using a widget function instead of a widget fully guarantees that the widget and its controllers will be removed from memory when they are no longer used."
Resolve :
In file: question_controller.dart & welcome_screen.dart
Instead of using
Get.to(ScoreScreen());
Get.to(QuizScreen())
Use
Get.to(() => ScoreScreen());
Get.to(() => QuizScreen())
The text was updated successfully, but these errors were encountered:
On Debug Console, "Using a widget function instead of a widget fully guarantees that the widget and its controllers will be removed from memory when they are no longer used."
Resolve :
In file: question_controller.dart & welcome_screen.dart
Instead of using
Get.to(ScoreScreen());
Get.to(QuizScreen())
Use
Get.to(() => ScoreScreen());
Get.to(() => QuizScreen())
On Debug Console, "Using a widget function instead of a widget fully guarantees that the widget and its controllers will be removed from memory when they are no longer used."
Resolve :
In file: question_controller.dart & welcome_screen.dart
Instead of using
Get.to(ScoreScreen());
Get.to(QuizScreen())
Use
Get.to(() => ScoreScreen());
Get.to(() => QuizScreen())
The text was updated successfully, but these errors were encountered: