LabeledContainerWidget constructor

const LabeledContainerWidget({
  1. Key? key,
  2. required String label,
  3. Alignment? labelAlignment,
  4. TextStyle? labelStyle,
  5. required Widget child,
  6. void onTap()?,
  7. Color? corBorda,
  8. Color? corFundoLabel,
  9. double padding = 0,
})

Implementation

const LabeledContainerWidget({
  Key? key,
  required this.label,
  this.labelAlignment,
  this.labelStyle,
  required this.child,
  this.onTap,
  this.corBorda,
  this.corFundoLabel,
  this.padding = 0,
}) : super(key: key);