bubble_widget 0.0.2 copy "bubble_widget: ^0.0.2" to clipboard
bubble_widget: ^0.0.2 copied to clipboard

A bubble shape widget. Supports common bubble style parameters, just like stroke, fill, arrow direction, size and so on.

example/bubble_widget_example.dart

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

class BubbleWidgetExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('BubbleWidgetExample')),
      body: Center(
        child: BubbleWidget(
          padding: EdgeInsets.all(8),
          color: Theme.of(context).primaryColor,
          child: Text('I\'m a bubble'),
        ),
      ),
    );
  }
}
5
likes
40
pub points
42%
popularity

Publisher

unverified uploader

A bubble shape widget. Supports common bubble style parameters, just like stroke, fill, arrow direction, size and so on.

Homepage

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on bubble_widget