flame_rive 0.0.1
flame_rive: ^0.0.1 copied to clipboard
Rive support for the Flame game engine. This uses the rive package and provides wrappers and components to be used inside Flame.
import 'package:flame/game.dart';
import 'package:flutter/widgets.dart' hide Animation;
void main() {
WidgetsFlutterBinding.ensureInitialized();
final RiveGame game = RiveGame();
runApp(game.widget);
}
class RiveGame extends BaseGame {}