mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-29 02:52:20 -05:00
refactor: add prefix to distinguish int value
This commit is contained in:
@@ -631,12 +631,13 @@ class AuthModel with ChangeNotifier {
|
||||
_accounts = (json.decode(str ?? '[]') as List)
|
||||
.map((item) => Account.fromJson(item))
|
||||
.toList();
|
||||
activeAccountIndex = prefs.getInt(StorageKeys.defaultAccount);
|
||||
activeAccountIndex = prefs.getInt(StorageKeys.iDefaultAccount);
|
||||
|
||||
if (activeAccount != null)
|
||||
if (activeAccount != null) {
|
||||
_activeTab = prefs.getInt(
|
||||
StorageKeys.getDefaultStartTabKey(activeAccount.platform)) ??
|
||||
0;
|
||||
}
|
||||
} catch (err) {
|
||||
Fimber.e('prefs getAccount failed', ex: err);
|
||||
_accounts = [];
|
||||
@@ -653,7 +654,7 @@ class AuthModel with ChangeNotifier {
|
||||
|
||||
Future<void> setDefaultAccount(int v) async {
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
await prefs.setInt(StorageKeys.defaultAccount, v);
|
||||
await prefs.setInt(StorageKeys.iDefaultAccount, v);
|
||||
Fimber.d('write default account: $v');
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
@@ -175,7 +175,7 @@ class ThemeModel with ChangeNotifier {
|
||||
Future<void> setMarkdown(int v) async {
|
||||
_markdown = v;
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
await prefs.setInt(StorageKeys.markdown, v);
|
||||
await prefs.setInt(StorageKeys.iMarkdown, v);
|
||||
Fimber.d('write markdown engine: $v');
|
||||
notifyListeners();
|
||||
}
|
||||
@@ -245,7 +245,7 @@ class ThemeModel with ChangeNotifier {
|
||||
if (AppBrightnessType.values.contains(b)) {
|
||||
_brightnessValue = b;
|
||||
}
|
||||
final m = prefs.getInt(StorageKeys.markdown);
|
||||
final m = prefs.getInt(StorageKeys.iMarkdown);
|
||||
if (AppMarkdownType.values.contains(m)) {
|
||||
_markdown = m;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user