particles_flutter 1.0.0 particles_flutter: ^1.0.0 copied to clipboard
A flutter package for particle animation. You can control the animation speed, number of Particles on the screen, dimension and shape of particle via connecting lines,etc.
import 'dart:io';
import 'dart:math';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:particles_flutter/component/particle/particle.dart';
import 'package:particles_flutter/particles_engine.dart';
import 'package:url_launcher/url_launcher.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(primarySwatch: Colors.blue),
home: const Scaffold(
backgroundColor: Colors.black,
body: CircularParticleScreen(),
),
);
}
}
class CircularParticleScreen extends StatelessWidget {
const CircularParticleScreen({super.key});
@override
Widget build(BuildContext context) {
double screenHeight = MediaQuery.of(context).size.height;
double screenWidth = MediaQuery.of(context).size.width;
return Stack(
children: [
Container(
color: Colors.blue,
child: Particles(
awayRadius: 150,
particles: createParticles(),
height: screenHeight,
width: screenWidth,
onTapAnimation: true,
awayAnimationDuration: const Duration(milliseconds: 100),
awayAnimationCurve: Curves.linear,
enableHover: true,
hoverRadius: 90,
connectDots: false,
),
),
Center(
child: Container(
height: 250,
width: 200,
decoration: BoxDecoration(
color: const Color.fromARGB(255, 221, 218, 218),
borderRadius: BorderRadius.circular(8),
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
const Text(
'particles flutter',
style: TextStyle(
color: Colors.black87,
fontSize: 18,
fontWeight: FontWeight.w900,
),
),
const Text(
'v1.0.0',
style: TextStyle(
color: Colors.black87,
fontSize: 12,
),
),
const SizedBox(height: 20),
Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: [
GestureDetector(
onTap: () {
launchUrl(Uri.parse(
"https://github.com/rajajain08/particles_flutter"));
},
child: Image.asset('assets/github.png', height: 30),
),
const SizedBox(
width: 20,
),
GestureDetector(
onTap: () {
launchUrl(Uri.parse(
"https://pub.dev/packages/particles_flutter"));
},
child: Image.asset(
'assets/pub.png',
height: 30,
),
),
],
),
],
),
),
),
],
);
}
List<Particle> createParticles() {
var rng = Random();
List<Particle> particles = [];
for (int i = 0; i < 140; i++) {
particles.add(Particle(
color: Colors.white.withOpacity(0.6),
size: rng.nextDouble() * 10,
velocity: Offset(rng.nextDouble() * 200 * randomSign(),
rng.nextDouble() * 200 * randomSign()),
));
}
return particles;
}
double randomSign() {
var rng = Random();
return rng.nextBool() ? 1 : -1;
}
}