如何使用颤振在启动画面中运行 .riv 动画

时间:2021-02-15 12:02:12

标签: flutter dart animation splash-screen rive

我无法在启动画面中运行 .riv 动画。请帮助我这样做。我简单地运行了它,它正在运行,但它在启动画面中不起作用。 帮我写代码。

1 个答案:

答案 0 :(得分:0)

您无法将 rive 添加到默认启动屏幕(您可以编辑它们,请查看 here)。但是您可以创建一个单独的 flutter 页面并将其用作您的第一页。像这样:

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: SplashPage(), // your rive animation goes here
    );
  }
}