mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-21 16:11:56 +00:00

* feat: add translation for tooltip * feat: add defaults for theme settings * feat: refactor appearance view so that all theme settings can be reset * chore: add keys for reset button * chore: add tests for the reset button * feat: register appearance test in runner * chore: remove comment * feat: add default file for appearance * chore: move around files * feat: make reset button respond to hover * fix: incorrect use of resetTheme * refactor: use maybeWhen * fix: icon button style * fix: rebase errors
11 lines
382 B
Dart
11 lines
382 B
Dart
import 'package:flowy_infra/theme.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
/// A class for the default appearance settings for the app
|
|
class DefaultAppearanceSettings {
|
|
static const kDefaultFontFamily = 'Poppins';
|
|
static const kDefaultThemeMode = ThemeMode.system;
|
|
static const kDefaultThemeName = "Default";
|
|
static const kDefaultTheme = BuiltInTheme.defaultTheme;
|
|
}
|