TipsDialog.dart 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. import 'package:flutter/material.dart';
  2. class TipsDialog{
  3. static show(BuildContext context,String title,tips) async {
  4. await showDialog<Null>(
  5. context: context,
  6. barrierDismissible: false,
  7. builder: (BuildContext context) {
  8. return new AlertDialog(
  9. title: new Text(title),
  10. content: new SingleChildScrollView(
  11. child: new ListBody(
  12. children: <Widget>[
  13. Text(tips)
  14. ],
  15. ),
  16. ),
  17. actions: <Widget>[
  18. new FlatButton(
  19. child: new Text('确定'),
  20. onPressed: () {
  21. Navigator.of(context).pop();
  22. },
  23. ),
  24. ],
  25. );
  26. },
  27. );
  28. }
  29. static wait(BuildContext context,String title,tips) async {
  30. await showDialog<Null>(
  31. context: context,
  32. barrierDismissible: false,
  33. builder: (BuildContext context) {
  34. return new AlertDialog(
  35. title: new Text(title),
  36. content: new SingleChildScrollView(
  37. child: new ListBody(
  38. children: <Widget>[
  39. Text(tips)
  40. ],
  41. ),
  42. ),
  43. );
  44. },
  45. );
  46. }
  47. static showByChoose(BuildContext context,String title,tips,yes,no,Function f) async {
  48. await showDialog<Null>(
  49. context: context,
  50. barrierDismissible: false,
  51. builder: (BuildContext context) {
  52. return new AlertDialog(
  53. title: new Text(title),
  54. content: new SingleChildScrollView(
  55. child: new ListBody(
  56. children: <Widget>[
  57. Text(tips)
  58. ],
  59. ),
  60. ),
  61. actions: <Widget>[
  62. new FlatButton(
  63. child: new Text(no),
  64. onPressed: () {
  65. f(false);
  66. },
  67. ),
  68. new FlatButton(
  69. child: new Text(yes),
  70. onPressed: () {
  71. f(true);
  72. },
  73. ),
  74. ],
  75. );
  76. },
  77. );
  78. }
  79. }