import 'package:fimber/fimber.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter_highlight/theme_map.dart'; import 'package:git_touch/utils/utils.dart'; import 'package:shared_preferences/shared_preferences.dart'; class CodeModel with ChangeNotifier { static var themes = themeMap.keys.toList(); static const fontSizes = [12, 13, 14, 15, 16, 17, 18, 19, 20]; static const fontFamilies = [ 'System', 'Fira Code', 'Inconsolata', 'PT Mono', 'Source Code Pro', 'Ubuntu Mono', 'Cascadia Code', 'JetBrains Mono', ]; String _theme = 'github-gist'; String _themeDark = 'vs2015'; int _fontSize = 14; String _fontFamily = 'System'; String get theme => _theme; String get themeDark => _themeDark; int get fontSize => _fontSize; String get fontFamily => _fontFamily; String get fontFamilyUsed => _fontFamily == 'System' ? CommonStyle.monospace : _fontFamily; Future init() async { var prefs = await SharedPreferences.getInstance(); var vh = prefs.getString(StorageKeys.codeTheme); var vdh = prefs.getString(StorageKeys.codeThemeDark); var vs = prefs.getInt(StorageKeys.iCodeFontSize); var vf = prefs.getString(StorageKeys.codeFontFamily); Fimber.d('read code: $vh, $vs, $vf'); if (themeMap.keys.contains(vh)) { _theme = vh; } if (themeMap.keys.contains(vdh)) { _themeDark = vdh; } if (fontSizes.contains(vs)) { _fontSize = vs; } if (fontFamilies.contains(vf)) { _fontFamily = vf; } notifyListeners(); } setTheme(String v) async { var prefs = await SharedPreferences.getInstance(); await prefs.setString(StorageKeys.codeTheme, v); Fimber.d('write code theme: $v'); _theme = v; notifyListeners(); } setThemeDark(String v) async { var prefs = await SharedPreferences.getInstance(); await prefs.setString(StorageKeys.codeThemeDark, v); Fimber.d('write code theme dark: $v'); _themeDark = v; notifyListeners(); } setFontSize(int v) async { var prefs = await SharedPreferences.getInstance(); await prefs.setInt(StorageKeys.iCodeFontSize, v); Fimber.d('write code font size: $v'); _fontSize = v; notifyListeners(); } setFontFamily(String v) async { var prefs = await SharedPreferences.getInstance(); await prefs.setString(StorageKeys.codeFontFamily, v); Fimber.d('write code font family: $v'); _fontFamily = v; notifyListeners(); } }