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

2 years ago
  1. import 'package:flutter/material.dart';
  2. import 'package:sqflite_pust_local_notification/utils/colors.dart';
  3. class Themes {
  4. static final light = ThemeData(
  5. backgroundColor: whiteClr,
  6. primarySwatch: Colors.blue,
  7. brightness: Brightness.light);
  8. static final dark = ThemeData(
  9. backgroundColor: blackClr,
  10. primarySwatch: Colors.grey,
  11. brightness: Brightness.dark);
  12. }