请支持原文:http://tryenough.com/images-animation
效果如下图:
代码
import 'package:flutter/material.dart';
import 'package:sprintf/sprintf.dart'; //这个是一个拼接字符串的flutter库,主要是为了使用方便,你可以选择不使用,这样的话你需要自己拼接图片路径
class ImagesAnimation extends StatefulWidget {
final double w;
final double h;
final ImagesAnimationEntry entry;
final int durationSeconds;
ImagesAnimation({Key key, this.w : 80, this.h : 80, this.entry, this.durationSeconds : 3}):super(key:key);
@override
_InState createState() {
return _InState();
}
}
class _InState extends State<Image