This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/web_native/lib/theme/style.dart

14 lines
319 B
Dart
Raw Normal View History

2021-01-06 21:12:32 +00:00
import 'package:flutter/material.dart';
ThemeData appTheme() {
return ThemeData(
primaryColor: Colors.white,
accentColor: Colors.orange,
hintColor: Colors.white,
dividerColor: Colors.white,
buttonColor: Colors.white,
2021-01-08 02:45:59 +00:00
scaffoldBackgroundColor: Colors.blue,
canvasColor: Colors.blue,
2021-01-06 21:12:32 +00:00
);
2021-01-08 02:45:59 +00:00
}