一、创建组件文件夹

image.png
在组件文件夹下,创建我们的自定义Dialog文件

二、编写自定义Dialog

由于我们是要编写自定义的Dialog,所以我们的类是要继承Dialog类,如下所示
剩下的内容和编写一个页面差不多
可以根据实际需求来调用对应需要的组件

  1. import 'package:flutter/material.dart';
  2. class Mydialog extends Dialog{
  3. @override
  4. Widget build(BuildContext context) {
  5. return Material( //根组件一定要是Material
  6. type: MaterialType.transparency,
  7. child: Center(
  8. child: Column(
  9. mainAxisAlignment: MainAxisAlignment.center,
  10. children: [
  11. Padding(
  12. padding: EdgeInsets.all(10),
  13. child: Container(
  14. height: 40,
  15. width: 200,
  16. decoration: BoxDecoration(
  17. borderRadius: BorderRadius.circular(10),
  18. color: Color.fromRGBO(131, 203, 172, 1),
  19. ),
  20. child: Row(
  21. mainAxisAlignment: MainAxisAlignment.center,
  22. crossAxisAlignment: CrossAxisAlignment.center,
  23. children: [
  24. Expanded(
  25. child: Icon(
  26. Icons.laptop_chromebook,
  27. color: Colors.black,
  28. size: 16,
  29. ),
  30. flex: 1,
  31. ),
  32. Expanded(
  33. child: Container(
  34. alignment: Alignment.centerLeft,
  35. child: Text(
  36. "成功",
  37. style: TextStyle(
  38. color: Colors.black,
  39. fontSize: 16
  40. )
  41. ),
  42. ),
  43. flex: 1
  44. )
  45. ],
  46. ),
  47. ),
  48. )
  49. ],
  50. )
  51. ),
  52. );
  53. }
  54. }

效果图:
image.png