SubmitBar constructor
const
SubmitBar({
- Key? key,
- double? price,
- String label = "合计:",
- String? suffixLabel,
- String textAlign = "right",
- String? buttonText,
- String? tip,
- IconData? tipIcon,
- bool disabled = false,
- bool loading = false,
- String currency = "¥",
- int decimalLength = 2,
- dynamic onSubmit()?,
- Widget? customTip,
- Widget? customTop,
- Widget? customLeft,
Implementation
const SubmitBar(
{Key? key,
this.price,
this.label: "合计:",
this.suffixLabel,
this.textAlign: "right",
this.buttonText,
this.tip,
this.tipIcon,
this.disabled: false,
this.loading: false,
this.currency: "¥",
this.decimalLength: 2,
this.onSubmit,
this.customTip,
this.customTop,
this.customLeft})
: super(key: key);