handy_dialogs 0.1.0 copy "handy_dialogs: ^0.1.0" to clipboard
handy_dialogs: ^0.1.0 copied to clipboard

Handy dialogs for your apps logic easy & quick integration of frequently used dialogs

Handy Dialogs

Features #

Handy dialogs for your apps 🧚🏼‍👨🏼‍💻
Easy & quick integration of frequently used dialogs

Getting started #

Add this import line

import 'package:dialogs/handy_dialogs.dart';

Usage #

Shows a dialog with given question and returns a confirmation bool

if(await confirmationDialog(
 context, "Do you agree?", "Agree", "Cancel"){
 //function code 
 }
Confirm Dialog

Displays an alert to confirm deletion then returns a bool

if(await deleteConfirmation(context)){   
//function code 
} 
Delete Confirmation

Shows a notification dialog with given title and message

notificationDialog(context, "title", "message"); 
Notification Dialog

Shows a flash dialog or a simple dialog with isFlash = false

showText(
 context, 
 "text", 
 "subtitle",  
 backgroundColor = Colors.amber, 
 seconds = 5, 
 leading = Icon(Icons.info),
 trailing = [Icon(Icons.delete)], 
 );    
Show Text

Additional information #

This package assumes corresponding permissions depending on platform

3
likes
140
pub points
0%
popularity

Publisher

verified publishermisdevelop.app

Handy dialogs for your apps logic easy & quick integration of frequently used dialogs

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flash, flutter, sound_library

More

Packages that depend on handy_dialogs