Files
arcane_framework/example/lib/config.dart
T
2025-04-30 15:04:14 +02:00

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,
];