15 lines
401 B
Dart
15 lines
401 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:sqflite_pust_local_notification/utils/colors.dart';
|
||
|
|
||
|
class Themes {
|
||
|
static final light = ThemeData(
|
||
|
backgroundColor: whiteClr,
|
||
|
primarySwatch: Colors.blue,
|
||
|
brightness: Brightness.light);
|
||
|
|
||
|
static final dark = ThemeData(
|
||
|
backgroundColor: blackClr,
|
||
|
primarySwatch: Colors.grey,
|
||
|
brightness: Brightness.dark);
|
||
|
}
|