flutter_particle_background 1.0.7 copy "flutter_particle_background: ^1.0.7" to clipboard
flutter_particle_background: ^1.0.7 copied to clipboard

This is a flutter particle background for all the platforms web, android and ios. This makes small particles moving in the background making the app look more pleasant.

example/example.dart

import 'dart:html';

import 'package:flutter/material.dart';
import 'package:flutter_particle_background/flutter_particle_background.dart';

class TestScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Stack(
          children: [
            ParticleBackground(
              backgroundColor: Colors.black,
              multiColor: false,
              particleColor: Colors.blue,
              numberOfParticles: 200,
              biggestSize: 6,
              smallestSize: 4,
              blur: true,
              allFilled: true,
              highestSpeed: 1.1,
              slowestSpeed: 0.2,
            ),
            Center(
              child: Text(
                'Welcome',
                style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
              ),
            )
          ],
        ),
      ),
    );
  }
}
26
likes
40
pub points
24%
popularity

Publisher

unverified uploader

This is a flutter particle background for all the platforms web, android and ios. This makes small particles moving in the background making the app look more pleasant.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_particle_background