Files
rog_app/lib/theme/app_theme.dart
Mohamed Nouffer a358f65853 start minimal
2023-06-02 10:50:56 +05:30

17 lines
534 B
Dart

import 'package:flutter/material.dart';
import 'package:rogapp/theme/pallete.dart';
class AppTheme {
static ThemeData theme = ThemeData.light(useMaterial3: true).copyWith(
scaffoldBackgroundColor: Pallete.WHITE_COLOR,
primaryColor: Pallete.BLUE_COLOR,
secondaryHeaderColor: Pallete.GREEN_COLOR,
appBarTheme: const AppBarTheme(
color: Pallete.BACKGROUND_COLOR,
elevation: 0
),
floatingActionButtonTheme: const FloatingActionButtonThemeData(
backgroundColor: Pallete.BLUE_COLOR
),
);
}