initial commit

This commit is contained in:
2025-11-28 23:58:41 +03:00
commit 013690061c
77 changed files with 2337 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
import 'package:flutter/material.dart';
class ThemeSchema {
Brightness brightness;
TextThemeSchema textTheme;
ColorThemeSchema colorTheme;
ThemeSchema({
required this.brightness,
required this.textTheme,
required this.colorTheme,
});
}
class TextThemeSchema {
TextStyle title;
TextStyle body;
TextThemeSchema({
required this.title,
required this.body,
});
}
class ColorThemeSchema {
Color primary;
Color secondary;
ColorThemeSchema({
required this.primary,
required this.secondary,
});
}