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

A new Flutter package project.

wiialert #

A package as AlertViewController For iOS;

Usage #

A simple for alertView #

var alert = WIIAlertWidget("提示", "网络异常,请稍后重试");
var ok = WIIAlertAction("确定", WIIAlertActionStyle.defult, (action) {
});
alert.addAction(ok);
var cancel = WIIAlertAction("取消", WIIAlertActionStyle.cancel, (action) {
});
alert.addAction(cancel);
alert.showIn(context);

A simple for ActionSheet #

var alert = WIIActionSheetWidge("提示", "网络异常,请稍后重试");
var ok = WIIAlertAction("确定", WIIAlertActionStyle.defult, (action) {
});
alert.addAction(ok);
var destructive = WIIAlertAction("警告", WIIAlertActionStyle.destructive, (action) {
});
alert.addAction(destructive);
var cancel = WIIAlertAction("取消", WIIAlertActionStyle.cancel, (action) {
});
alert.addAction(cancel);
alert.showIn(context);
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package project.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on wiialert