TxButtonBar constructor

const TxButtonBar({
  1. required Widget mainButton,
  2. Key? key,
  3. Widget? secondaryButton,
  4. List<Widget>? actions,
  5. EdgeInsetsGeometry? buttonPadding,
  6. ButtonTextTheme? buttonTextTheme,
  7. double? buttonHeight,
  8. double? buttonMinWidth,
  9. ButtonBarLayoutBehavior? layoutBehavior,
  10. bool? buttonAlignedDropdown,
})

创建一个操作按钮栏。

Implementation

const TxButtonBar({
  required this.mainButton,
  super.key,
  this.secondaryButton,
  this.actions,
  this.buttonPadding,
  this.buttonTextTheme,
  this.buttonHeight,
  this.buttonMinWidth,
  this.layoutBehavior,
  this.buttonAlignedDropdown,
});