TransformBottomDialog constructor
const
TransformBottomDialog({
- Key? key,
- required String title,
- TextStyle titleTextStyle = const TextStyle(color: Color(0xFF222222), fontSize: 16, fontWeight: FontWeight.bold),
- Color backgroundColor = Colors.white,
- EdgeInsetsGeometry padding = const EdgeInsets.all(24),
- Widget? closeButton,
- required Widget child,
- Function? onClose,
Implementation
const TransformBottomDialog({
Key? key,
required this.title,
this.titleTextStyle = const TextStyle(color: Color(0xFF222222), fontSize: 16, fontWeight: FontWeight.bold),
this.backgroundColor = Colors.white,
this.padding = const EdgeInsets.all(24),
this.closeButton,
required this.child,
this.onClose,
}) : super(key: key);