Future<void> setShowTips(bool value) async { SharedPreferences prefs = await SharedPreferences.getInstance(); await prefs.setBool('showTips', value); _showTips = value; notifyListeners(); }