v0.0.2
starsview
Flutter用のAnimatedStarsView。このウィジェットは、アニメーションされた星だらけの夜空効果を備えたビューを提供します。
29いいね 5430日間ダウンロード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,
)
],
),
),
),
);
}