mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2026-02-05 19:52:17 +00:00
init
This commit is contained in:
10
lib/app/theme/app_theme.dart
Normal file
10
lib/app/theme/app_theme.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
/// Класс для конфигурации светлой/темной темы приложения
|
||||
abstract class AppTheme {
|
||||
/// Геттер для получения светлой темы
|
||||
static ThemeData get light => ThemeData.light();
|
||||
|
||||
/// Геттер для получения темной темы
|
||||
static ThemeData get dark => ThemeData.dark();
|
||||
}
|
||||
Reference in New Issue
Block a user