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

34
lib/theme/theme_data.dart Normal file
View File

@@ -0,0 +1,34 @@
import 'package:base_project/theme/theme_schema.dart';
import 'package:flutter/material.dart';
class LightTheme extends ThemeSchema {
LightTheme() : super(
brightness: Brightness.light,
textTheme: TextThemeSchema(
title: const TextStyle(),
body: const TextStyle()
),
colorTheme: ColorThemeSchema(
primary: Colors.black,
secondary: Colors.white
)
);
}
class DarkTheme extends ThemeSchema {
DarkTheme() : super(
brightness: Brightness.dark,
textTheme: TextThemeSchema(
title: const TextStyle(),
body: const TextStyle()
),
colorTheme: ColorThemeSchema(
primary: Colors.white,
secondary: Colors.black
)
);
}