2025-08-12 15:18:38 +07:00

12 lines
210 B
Dart

import 'package:flutter/material.dart';
part 'app_color.dart';
part 'app_style.dart';
part 'app_value.dart';
class ThemeApp {
static ThemeData get theme => ThemeData(
useMaterial3: true,
);
}