easy_alert icon indicating copy to clipboard operation
easy_alert copied to clipboard

A `AlertProvider` must be supplied

Open rahulmahadik opened this issue 6 years ago • 1 comments

I'm trying add in my flutter project My Code:

@override
 Widget build(BuildContext context) {

....

Alert.toast(context, "My msg",position: ToastPosition.bottom, duration: ToastDuration.long);
...
}

Error:

A AlertProvider must be supplied I/flutter ( 9175): 'package:easy_alert/easy_alert.dart': Failed assertion: line 90 pos 12: 'manager != null'

image

rahulmahadik avatar Nov 21 '18 09:11 rahulmahadik

void main() => runApp(new AlertProvider( child: new YourApp(), config: new AlertConfig( ok: "OK text for ok button in AlertDialog", cancel: "CANCEL text for cancel button in AlertDialog"), ));

jzoom avatar Nov 27 '18 14:11 jzoom