This is flutter sqlite local notification project. User can add task.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
401 B

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);
}