wip: add easy_localization.

This commit is contained in:
2021-09-23 18:40:12 +08:00
parent aa2454553c
commit aa2f50233f
14 changed files with 160 additions and 95 deletions
+5
View File
@@ -0,0 +1,5 @@
import 'package:flutter/material.dart';
var darkTheme = ThemeData.dark().copyWith(
primaryColor: Colors.grey,
);
+5
View File
@@ -0,0 +1,5 @@
import 'package:flutter/material.dart';
var lightTheme = ThemeData.light().copyWith(
primaryColor: Colors.blue,
);