part of ansu_ui; class ASDialog extends StatefulWidget { final bool close; ///按钮组 final List items; ///按钮与按钮之间的间距 final double spacer; final EdgeInsets padding; final Widget child; final EdgeInsets childPadding; ASDialog({ Key key, this.close = false, this.items, this.spacer, this.padding, @required this.child, this.childPadding, }) : super(key: key); @override _ASDialogState createState() => _ASDialogState(); } class _ASDialogState extends State { double get _widgetSpacer => widget.spacer ?? 20.w; EdgeInsets get _widgetPadding => widget.padding ?? EdgeInsets.only( top: 13.w, bottom: 20.w, ); EdgeInsets get _childPadding => widget.childPadding ?? EdgeInsets.only( top: 40.w, bottom: 50.w, ); @override Widget build(BuildContext context) { return Center( child: Padding( padding: EdgeInsets.symmetric(horizontal: 28.w), child: Material( color: kForegroundColor, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(15.w), ), child: Stack( children: [ Padding( padding: _widgetPadding, child: Column( mainAxisSize: MainAxisSize.min, children: [ Center( child: DefaultTextStyle( style: TextStyle( color: kTextColor, fontSize: 20.sp, fontWeight: FontWeight.bold, ), child: Padding( padding: _childPadding, child: widget.child, ), ), ), ...List.generate(widget.items.length * 2 - 1, (index) { if (index.isEven) return widget.items[index ~/ 2]; else return _widgetSpacer.hb; }), ], ), ), widget.close ? Positioned( right: 0, top: 0, child: IconButton( iconSize: 20.w, icon: Icon( CupertinoIcons.clear_circled, color: Color(0xFF060606).withOpacity(0.85), ), onPressed: () => Navigator.pop(context), splashRadius: 16.w, ), ) : SizedBox(), ], ), ), ), ); } }