We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b899a26 commit 72913adCopy full SHA for 72913ad
lib/app/modules/home/controllers/home_controller.dart
@@ -101,6 +101,17 @@ class HomeController extends GetxController {
101
widgetController.update();
102
}
103
});
104
+ ever(splashController.currentProfile, (_) {
105
+ if (splashController.getMode(splashController.currentProfile.value) !=
106
+ "TW3") {
107
+ refreshTaskWithNewProfile();
108
+ }
109
+ if (Platform.isAndroid) {
110
+ WidgetController widgetController = Get.put(WidgetController());
111
+ widgetController.fetchAllData();
112
+ widgetController.updateWidget();
113
114
+ });
115
116
117
Future<List<String>> getUniqueProjects() async {
0 commit comments