overlay_popup_dialog 1.0.1 overlay_popup_dialog: ^1.0.1 copied to clipboard
Overlay Popup Dialog for Android, iOS, Web, Desktop and Linux. Easy to use overlay popup dialog for Flutter.
Overlay Popup Dialog Widget #
The OverlayPopupDialog widget is a widget that displays an animated and smooth overlay relative to the clicked widget, positioning it above, below, left, right or on top of it.
You can test this package on web by clicking here!
Features #
- Show overlay dialog on; top, bottom, left, right or on the tapped widget.
- Customize overlay dialog as you wish.
- Use controller to call open and close overlay functions.
- Controller animation directions like top to bottom, left to right etc.
- Show highlighted button when overlay open.
Getting started #
In the pubspec.yaml
of your flutter project, add the following dependency:
dependencies:
overlay_popup_dialog: ^latest
Import these:
import 'package:overlay_popup_dialog/overlay_popup_dialog.dart';
Usage #
Create OverlayPopupDialogController and initialize it.
late final OverlayPopupDialogController _overlayController;
@override
void initState() {
super.initState();
_overlayController = OverlayPopupDialogController();
}
@override
void dispose() {
_overlayController.dispose();
super.dispose();
}
Then wrap your widget with OverlayPopupDialog like below.
OverlayPopupDialog(
controller = _overlayController2,
overlayLocation = selectedLocation,
leftGap = 0,
animationDirection = selectedDirection,
highlightChildOnBarrier = highlightChildOnBarrier,
dialogChild = _DialogWidget(onClose: _overlayController2.close),
child = ElevatedButton(
onPressed: () {
_overlayController2.show();
},
child: const Text('With Controller & Tappable Child '),
),
),
That's it. You don't need to create a controller. But if you want to trigger dialog opening with custom callbacks, you can use it. ⚠️ IMPORTANT: If you assigned a controller to OverlayPopupDialog widget, you must use this controller's functions to open/close dialog. Otherwise it won't work.
import 'package:flutter/material.dart';
import 'package:overlay_popup_dialog/overlay_popup_dialog.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'OverlayPopupDialog Playground',
home: const HomePage(),
theme: ThemeData(
scaffoldBackgroundColor: Colors.white,
expansionTileTheme: ExpansionTileThemeData(
backgroundColor: Colors.lightBlue[100],
collapsedBackgroundColor: Colors.grey[200],
)),
);
}
}
class HomePage extends StatefulWidget {
const HomePage({super.key});
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
late final OverlayPopupDialogController _overlayController;
late final OverlayPopupDialogController _overlayController2;
@override
void initState() {
super.initState();
_overlayController = OverlayPopupDialogController();
_overlayController2 = OverlayPopupDialogController();
}
@override
void dispose() {
_overlayController.dispose();
_overlayController2.dispose();
super.dispose();
}
List<OverlayLocation> locations = [
OverlayLocation.bottom,
OverlayLocation.top,
OverlayLocation.on,
OverlayLocation.left,
OverlayLocation.right,
];
OverlayLocation selectedLocation = OverlayLocation.bottom;
List<AnimationDirection> directions = [
AnimationDirection.TTB,
AnimationDirection.BTT,
];
AnimationDirection selectedDirection = AnimationDirection.TTB;
bool highlightChildOnBarrier = false;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('OverlayPopupDialog Playground'),
),
body: SingleChildScrollView(
padding: const EdgeInsets.all(16),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
ExpansionTile(
title: Text('Overlay Location: ${selectedLocation.toString()}'),
children: [
for (final location in locations)
RadioListTile(
value: location,
dense: true,
groupValue: selectedLocation,
title: Text(location.toString()),
onChanged: (v) {
if (v != null) {
setState(() => selectedLocation = location);
if (selectedLocation == OverlayLocation.left ||
selectedLocation == OverlayLocation.right) {
setState(() {
selectedDirection = AnimationDirection.LTR;
directions = [
AnimationDirection.LTR,
AnimationDirection.RTL,
];
});
} else {
setState(() {
selectedDirection = AnimationDirection.TTB;
directions = [
AnimationDirection.TTB,
AnimationDirection.BTT,
];
});
}
}
},
),
],
),
ExpansionTile(
title:
Text('Animation Direction: ${selectedDirection.toString()}'),
children: [
for (final direction in directions)
RadioListTile(
dense: true,
value: direction,
groupValue: selectedDirection,
title: Text(direction.toString()),
onChanged: (v) {
if (v != null) {
setState(() => selectedDirection = direction);
}
},
),
],
),
ExpansionTile(
title:
Text('Highlight Child On Barrier: $highlightChildOnBarrier'),
children: [
SwitchListTile(
value: highlightChildOnBarrier,
dense: true,
onChanged: (v) {
setState(() => highlightChildOnBarrier = v);
},
title: Text(highlightChildOnBarrier
? 'Highlight ON'
: 'Highlight OFF'),
),
],
),
const SizedBox(height: 64),
// No Controller & Not Tappable Child
OverlayPopupDialog(
overlayLocation: selectedLocation,
animationDirection: selectedDirection,
highlightChildOnBarrier: highlightChildOnBarrier,
dialogChild: const _DialogWidget(onClose: null),
child: Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.blue[200],
borderRadius: BorderRadius.circular(8),
),
child: const Text('No Controller & Not Tappable Child'),
),
),
const SizedBox(height: 16),
// No Controller & Tappable Child
Align(
alignment: Alignment.center,
child: OverlayPopupDialog(
overlayLocation: selectedLocation,
animationDirection: selectedDirection,
highlightChildOnBarrier: highlightChildOnBarrier,
dialogChild: const _DialogWidget(onClose: null),
child: ElevatedButton(
onPressed: () {
debugPrint('Tapped');
},
child: const Text('No Controller & Tappable Child '),
),
),
),
const SizedBox(height: 16),
// With Controller & Not Tappable Child
Align(
alignment: Alignment.center,
child: OverlayPopupDialog(
controller: _overlayController,
overlayLocation: selectedLocation,
animationDirection: selectedDirection,
highlightChildOnBarrier: highlightChildOnBarrier,
dialogChild: _DialogWidget(onClose: _overlayController.close),
child: InkWell(
onTap: () {
_overlayController.show();
},
child: Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.blue[200],
borderRadius: BorderRadius.circular(8),
),
child: const Text('With Controller & Not Tappable Child'),
),
),
),
),
const SizedBox(height: 16),
// With Controller & Tappable Child
Center(
child: OverlayPopupDialog(
controller: _overlayController2,
overlayLocation: selectedLocation,
leftGap: 0,
animationDirection: selectedDirection,
highlightChildOnBarrier: highlightChildOnBarrier,
dialogChild: _DialogWidget(onClose: _overlayController2.close),
child: ElevatedButton(
onPressed: () {
_overlayController2.show();
},
child: const Text('With Controller & Tappable Child '),
),
),
),
const SizedBox(height: 64),
],
),
),
);
}
}
class _DialogWidget extends StatelessWidget {
final VoidCallback? onClose;
const _DialogWidget({
super.key,
required this.onClose,
});
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8),
color: Colors.blue[100],
),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text(
'Dialog Title',
style: Theme.of(context).textTheme.titleLarge,
),
const Divider(),
Text(
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
style: Theme.of(context).textTheme.bodyMedium,
),
const SizedBox(height: 16),
if (onClose != null)
Align(
alignment: Alignment.bottomRight,
child: ElevatedButton(
onPressed: onClose,
child: const Text('Close'),
),
),
],
),
);
}
}
Also you can check whole example code here: OverlayPopupDialog Github Link
Additional information #
Package's repo: https://github.com/metekaganmusaak/overlay_popup_dialog