mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
17 lines
No EOL
286 B
Dart
17 lines
No EOL
286 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
enum ThemeType {light, bright, dark}
|
|
|
|
abstract class ThemeBase {
|
|
ThemeBase({@required this.raw});
|
|
|
|
final int raw;
|
|
String get title;
|
|
ThemeData get themeData;
|
|
ThemeType get type;
|
|
|
|
@override
|
|
String toString() {
|
|
return title;
|
|
}
|
|
} |