You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
633 B
Dart
21 lines
633 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:test_sa/core/constants/app_colors.dart';
|
|
|
|
class AppTheme {
|
|
AppTheme._();
|
|
|
|
static get theme => ThemeData(
|
|
fontFamily: "Poppins",
|
|
canvasColor: AppColors.primaryColor,
|
|
scaffoldBackgroundColor: AppColors.scaffoldBackgroundColor,
|
|
primaryColor: AppColors.primaryColor,
|
|
indicatorColor: AppColors.primaryColor,
|
|
colorScheme: const ColorScheme.light(
|
|
primary: AppColors.primaryColor,
|
|
onPrimary: Colors.white,
|
|
secondary: AppColors.secondaryColor,
|
|
onSecondary: Colors.white,
|
|
),
|
|
);
|
|
}
|