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(
appBar: AppBar(
title: Text('Rive 动画示例'),
),
body: Center(
child: RiveAnimation.network(
'https://www.example.com/path/to/your/rive/file.riv', // 替换为你的Rive动画文件URL
fit: BoxFit.cover,
animations: ['YourAnimationName'], // 替换为你想播放的Rive动画名称
),
),
),
);
}
}
这段代码演示了如何在Flutter应用中加载和播放一个Rive动画文件。你需要将https://www.example.com/path/to/your/rive/file.riv
替换为你的Rive动画文件的实际URL,同时将'YourAnimationName'
替换为你想要自动播放的Rive动画的名称。这个例子使用RiveAnimation.network
来加载网络上的Rive文件,并通过animations
属性来指定要播放的动画。
评论已关闭