Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. final darkTheme = ThemeData(
  4. primarySwatch: Colors.grey,
  5. primaryColor: Colors.black,
  6. brightness: Brightness.dark,
  7. backgroundColor: const Color(0xFF212121),
  8. accentColor: Colors.white,
  9. accentIconTheme: IconThemeData(color: Colors.black),
  10. dividerColor: Colors.black12,
  11. );
  12.  
  13. final lightTheme = ThemeData(
  14. primarySwatch: Colors.grey,
  15. primaryColor: Colors.white,
  16. brightness: Brightness.light,
  17. backgroundColor: const Color(0xFFE5E5E5),
  18. accentColor: Colors.black,
  19. accentIconTheme: IconThemeData(color: Colors.white),
  20. dividerColor: Colors.white54,
  21. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement