flame_bloc 1.0.0-releasecandidate.15 flame_bloc: ^1.0.0-releasecandidate.15 copied to clipboard
Bloc integration to Flame games
import 'package:flutter/material.dart';
import 'src/game.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: GamePage(),
);
}
}