flutter_popup 3.1.1 copy "flutter_popup: ^3.1.1" to clipboard
flutter_popup: ^3.1.1 copied to clipboard

beautiful popup for flutter

flutter_popup #

A simple and elegant popup

Getting Started #

image image image image

How to use #

dependencies:
  flutter_popup: ^latest_version
import 'package:flutter_popup/flutter_popup.dart';
// easy to use
CustomPopup(
  content: Text('George says everything looks fine'),
  child: Icon(Icons.help),
),

CustomPopup(
  content: _Slider(),
  child:Text('slider'),
)

CustomPopup(
  content: Column(
  mainAxisSize: MainAxisSize.min,
    children: List.generate(5, (index) => Text('menu$index')),
  ),
  child: const Icon(Icons.add_circle_outline),
)