popup method
Show About popup
Implementation
void popup(BuildContext context) async {
fill(context);
showDialog(
context: context,
builder: (context) => SimpleDialog(
title: widgetTitle(),
children: content,
),
);
}
Show About popup
void popup(BuildContext context) async {
fill(context);
showDialog(
context: context,
builder: (context) => SimpleDialog(
title: widgetTitle(),
children: content,
),
);
}