import 'package:flutter/material.dart'; class TipsDialog{ static show(BuildContext context,String title,tips) async { await showDialog( context: context, barrierDismissible: false, builder: (BuildContext context) { return new AlertDialog( title: new Text(title), content: new SingleChildScrollView( child: new ListBody( children: [ Text(tips) ], ), ), actions: [ new FlatButton( child: new Text('确定'), onPressed: () { Navigator.of(context).pop(); }, ), ], ); }, ); } static wait(BuildContext context,String title,tips) async { await showDialog( context: context, barrierDismissible: false, builder: (BuildContext context) { return new AlertDialog( title: new Text(title), content: new SingleChildScrollView( child: new ListBody( children: [ Text(tips) ], ), ), ); }, ); } static showByChoose(BuildContext context,String title,tips,yes,no,Function f) async { await showDialog( context: context, barrierDismissible: false, builder: (BuildContext context) { return new AlertDialog( title: new Text(title), content: new SingleChildScrollView( child: new ListBody( children: [ Text(tips) ], ), ), actions: [ new FlatButton( child: new Text(no), onPressed: () { f(false); }, ), new FlatButton( child: new Text(yes), onPressed: () { f(true); }, ), ], ); }, ); } }