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

13 lines
320 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,
scaffoldBackgroundColor: Colors.black,
canvasColor: Colors.black,
);
}