mirror of
https://github.com/rive-app/rive-flutter.git
synced 2025-08-06 00:21:17 +08:00

Makes this easier: ``` class MyController extends RiveAnimationController<Artboard> { @override bool init(Artboard core) { var run = core.component<TextValueRun>("blah"); run?.text = "HEEEEEY"; return super.init(core); } @override void apply(Artboard? core, double elapsedSeconds) {} } ``` Also exposes NestedArtboard which lots of users have requested. Diffs= fa36ec055 Make TextValueRun visible to clients and NestedArtboards too. (#5657) Co-authored-by: Luigi Rosso <luigi-rosso@users.noreply.github.com>