8000 fix: taskchampion sync settings made persistent by SGI-CAPP-AT2 · Pull Request #457 · CCExtractor/taskwarrior-flutter · GitHub
[go: up one dir, main page]

Skip to content

fix: taskchampion sync settings made persistent #457

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/app/modules/home/controllers/home_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class HomeController extends GetxController {

Future<void> _loadTaskChampion() async {
final SharedPreferences prefs = await SharedPreferences.getInstance();
taskchampion.value = prefs.getBool('taskchampion') ?? false;
taskchampion.value = prefs.getBool('settings_taskc') ?? false;
}

void addListenerToScrollController() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class SettingsController extends GetxController {
prefs.getBool('sync-OnTaskCreate') ?? false;
delaytask.value = prefs.getBool('delaytask') ?? false;
change24hr.value = prefs.getBool('24hourformate') ?? false;
taskchampion.value = prefs.getBool('taskc') ?? false;
taskchampion.value = prefs.getBool('settings_taskc') ?? false;
initDarkMode();
baseDirectory.value = await getBaseDirectory();
super.onInit();
Expand Down
Origi 6720 nal file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class SettingsPageTaskchampionTileListTileTrailing extends StatelessWidget {
controller.taskchampion.value = value;

final SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.setBool('taskc', value);
await prefs.setBool('settings_taskc', value);
Get.find<HomeController>().taskchampion.value = value;
},
),
Expand Down
Loading
0