Update environment generated file

This commit is contained in:
2025-02-21 08:26:27 +01:00
parent ff9636b75b
commit a46674844c
205 changed files with 17722 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import 'package:rive/rive.dart';
class RiveUtils {
static StateMachineController getRiveController(Artboard artboard,
{stateMachineName = "State Machine 1"}) {
StateMachineController? controller =
StateMachineController.fromArtboard(artboard, stateMachineName);
artboard.addController(controller!);
return controller;
}
}