mirror of
https://github.com/hanskokx/arcane_framework.git
synced 2026-05-14 02:19:08 +02:00
68ce73abf5
Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
22 lines
374 B
Dart
22 lines
374 B
Dart
import "package:flutter/material.dart";
|
|
|
|
enum Feature {
|
|
logging(true),
|
|
authentication(true),
|
|
;
|
|
|
|
final bool enabledAtStartup;
|
|
const Feature(this.enabledAtStartup);
|
|
}
|
|
|
|
// Some colors we'll use for our example
|
|
const List<MaterialColor> colors = [
|
|
Colors.red,
|
|
Colors.orange,
|
|
Colors.yellow,
|
|
Colors.green,
|
|
Colors.blue,
|
|
Colors.purple,
|
|
Colors.deepPurple,
|
|
];
|