flutter_animated_background
1.0.0
动画背景扑来。轻松扩展到在画布上绘制您想要的任何东西。
注意:这些示例很懒惰,因为它们是从模拟器中记录的。屏幕截图文件夹中可用的其他示例。
在您的PubSpec.yaml中:
dependencies :
animated_background : ^1.0.5在您的飞镖文件中:
import 'package:animated_background/animated_background.dart' ;在带有Mixin TickerProviderStateMixin的状态小部件中使用或通过vsync中的股票提供商。
AnimatedBackground (
behaviour : RandomParticleBehaviour (),
vsync : this ,
child : Text ( 'Hello' ),
);