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,
)
],
),
),
),
);
}