mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-03 12:28:03 +08:00
17 lines
367 B
Dart
17 lines
367 B
Dart
import 'package:dashbook/dashbook.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:tutorials_space_shooter/steps/1_getting_started/getting_started.dart';
|
|
|
|
void main() {
|
|
final dashbook = Dashbook.dualTheme(
|
|
light: ThemeData.light(),
|
|
dark: ThemeData.dark(),
|
|
initWithLight: false,
|
|
);
|
|
|
|
addGettingStarted(dashbook);
|
|
|
|
runApp(dashbook);
|
|
}
|