v0.0.2
starsview
适用于 Flutter 的 AnimatedStarsView。该小部件提供带有动态星空夜空效果的视图。
29喜欢 54近 30 天下载135Pub 分数
AndroidiOSWebmacOSWindowsLinux
适用于 Flutter 的 AnimatedStarsView
{"sdk":"flutter"}{"sdk":"flutter"}^2.0.2{"sdk":"flutter"}^2.0.0以下为英文项目原文快照,最新内容请访问 GitHub。
AnimatedStarsView for Flutter
Alt Text
Pure Dart implementation of AnimatedStarsView
Add library to your pubspec.yaml
dependencies:
starsview: '^0.0.2'
Add StarsView to your widget tree
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Stack(
children: <Widget>[
Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topRight,
end: Alignment.bottomLeft,
colors: <Color>[
Colors.red,
Colors.blue,
],
)
)
),
StarsView(
fps: 60,
)
],
),
),
),
);
}