floating_bubbles 0.0.9 copy "floating_bubbles: ^0.0.9" to clipboard
floating_bubbles: ^0.0.9 copied to clipboard

outdated

A Flutter Package for adding Floating bubbles on the Foreground to any Flutter widget.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: HomePage(),
      ),
    );
  }
}

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Stack(
      children: [
        Positioned.fill(
          child: Container(
            color: Colors.blue,
          ),
        ),
        Positioned.fill(
          child: FloatingBubbles.alwaysRepeating(
            noOfBubbles: 40,
            colorOfBubbles: Colors.white.withAlpha(70),
            sizeFactor: 0.2,
          ),
        ),
      ],
    );
  }
}

class HomePage1 extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Stack(
      children: [
        Positioned.fill(
          child: Container(
            color: Colors.blue,
          ),
        ),
        Positioned.fill(
          child: FloatingBubbles(
            noOfBubbles: 40,
            colorOfBubbles: Colors.white.withAlpha(70),
            sizeFactor: 0.2,
            duration: 120, //120 seconds
          ),
        ),
      ],
    );
  }
}
80
likes
40
pub points
90%
popularity

Publisher

unverified uploader

A Flutter Package for adding Floating bubbles on the Foreground to any Flutter widget.

Repository (GitHub)
View/report issues
Contributing

License

MIT (license)

Dependencies

flutter, simple_animations

More

Packages that depend on floating_bubbles