TF-4354 Activate Label by default for all users

This commit is contained in:
dab246
2026-03-03 10:59:37 +07:00
committed by Dat H. Pham
parent 8187040b10
commit 3cdf65866a
3 changed files with 4 additions and 6 deletions
@@ -8,7 +8,7 @@ class SettingCacheManager {
final SharedPreferences _sharedPreferences;
bool getLabelVisibility() {
return _sharedPreferences.getBool(_labelVisibilitySettingKey) ?? false;
return _sharedPreferences.getBool(_labelVisibilitySettingKey) ?? true;
}
Future<void> saveLabelVisibility(bool visible) async {