mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-05-05 22:52:19 +00:00
Add theme base v2
This commit is contained in:
parent
a49f1bc8c8
commit
bc9d3c3d85
1 changed files with 17 additions and 0 deletions
17
lib/theme_base_v2.dart
Normal file
17
lib/theme_base_v2.dart
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class BaseThemeV2 {
|
||||||
|
static final ThemeData appTheme = ThemeData(
|
||||||
|
colorScheme: ColorScheme(
|
||||||
|
brightness: brightness,
|
||||||
|
primary: primary,
|
||||||
|
onPrimary: onPrimary,
|
||||||
|
secondary: secondary,
|
||||||
|
onSecondary: onSecondary,
|
||||||
|
error: error,
|
||||||
|
onError: onError,
|
||||||
|
surface: surface,
|
||||||
|
onSurface: onSurface,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in a new issue