bubble_picker 0.0.1 copy "bubble_picker: ^0.0.1" to clipboard
bubble_picker: ^0.0.1 copied to clipboard

A Flutter widget for displaying and interacting with customizable, animated bubbles which grow in size when selected.

example/lib/main.dart

import 'package:example/gradient_bubble_picker.dart';
import 'package:example/image_bubble_picker.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const ExampleApp());
}

class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: IndexedStack(
          index: 0,
          children: [
            GradientBubblePicker(),
            ImageBubblePicker(),
          ],
        ),
      ),
    );
  }
}
22
likes
0
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter widget for displaying and interacting with customizable, animated bubbles which grow in size when selected.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on bubble_picker