mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-12 02:19:49 +08:00
This upgrades all packages to Flutter 3.0.0 and fixes all analyze issues that came from that.
18 lines
319 B
Dart
18 lines
319 B
Dart
import 'package:flame_bloc_example/src/game.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const MaterialApp(
|
|
home: GamePage(),
|
|
);
|
|
}
|
|
}
|