我无法在启动画面中运行 .riv 动画。请帮助我这样做。我简单地运行了它,它正在运行,但它在启动画面中不起作用。 帮我写代码。
答案 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
);
}
}