Flutter开发之——动画-Rive
import 'package:flutter/material.dart';
import 'package:rive/rive.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: RiveAnimation.network(
'https://www.example.com/your_rive_file.riv', // 替换为你的Rive动画文件URL
fit: BoxFit.cover,
),
),
),
);
}
}
这段代码演示了如何在Flutter应用中加载和显示一个从网络上的URL获取的Rive动画文件。你需要将 'https://www.example.com/your_rive_file.riv'
替换为你自己的Rive文件的实际URL。这个例子使用RiveAnimation.network
方法来异步加载并播放Rive动画。
评论已关闭