appearance_defaults.dart 382 B

12345678910
  1. import 'package:flowy_infra/theme.dart';
  2. import 'package:flutter/material.dart';
  3. /// A class for the default appearance settings for the app
  4. class DefaultAppearanceSettings {
  5. static const kDefaultFontFamily = 'Poppins';
  6. static const kDefaultThemeMode = ThemeMode.system;
  7. static const kDefaultThemeName = "Default";
  8. static const kDefaultTheme = BuiltInTheme.defaultTheme;
  9. }