v0.0.2
starsview
AnimatedStarsView für Flutter. Das Widget bietet eine Ansicht mit animiertem Sternenhimmel-Effekt.
29Likes 5430-Tage-Downloads135Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
AnimatedStarsView für Flutter
{"sdk":"flutter"}{"sdk":"flutter"}^2.0.2{"sdk":"flutter"}^2.0.0Englischer Projektschnappschuss. Aktuelle Inhalte auf 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,
)
],
),
),
),
);
}