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
2021-01-07 21:45:59 -05:00

14 lines
319 B
Dart

import 'package:flutter/material.dart';
ThemeData appTheme() {
return ThemeData(
primaryColor: Colors.white,
accentColor: Colors.orange,
hintColor: Colors.white,
dividerColor: Colors.white,
buttonColor: Colors.white,
scaffoldBackgroundColor: Colors.blue,
canvasColor: Colors.blue,
);
}