BankIncomeSorterSheet constructor

const BankIncomeSorterSheet({
  1. required BankIncomeSorterController controller,
  2. Key? key,
  3. VoidCallback? onDismiss,
  4. String title = 'Income Received',
  5. String remainingLabel = 'Remaining',
  6. String addPotLabel = 'Add pot',
  7. String repeatLabel = 'Repeat this split automatically next time',
  8. String confirmLabel = 'Confirm',
  9. String removeEntryTooltip = 'Remove',
  10. EdgeInsetsGeometry? padding,
  11. BorderRadius? radius,
  12. Color? backgroundColor,
  13. Color? accentColor,
  14. TextStyle? titleStyle,
  15. TextStyle? amountStyle,
  16. IconData? addPotIcon,
  17. IconData? removeEntryIcon,
})

Implementation

const BankIncomeSorterSheet({
  required this.controller,
  super.key,
  this.onDismiss,
  this.title = 'Income Received',
  this.remainingLabel = 'Remaining',
  this.addPotLabel = 'Add pot',
  this.repeatLabel = 'Repeat this split automatically next time',
  this.confirmLabel = 'Confirm',
  this.removeEntryTooltip = 'Remove',
  this.padding,
  this.radius,
  this.backgroundColor,
  this.accentColor,
  this.titleStyle,
  this.amountStyle,
  this.addPotIcon,
  this.removeEntryIcon,
});