UpExpansionTile constructor

const UpExpansionTile({
  1. Key? key,
  2. required List<Widget> children,
  3. String? title,
  4. Widget? titleWidget,
  5. UpColorType? colorType,
  6. UpStyle? style,
  7. dynamic onExpansionChanged(
    1. bool
    )?,
  8. Widget? subtitle,
  9. Widget? leading,
  10. Widget? trailing,
  11. bool maintainState = false,
  12. bool initiallyExpanded = false,
  13. ListTileControlAffinity? controlAffinity,
  14. EdgeInsetsGeometry? childrenPadding,
  15. EdgeInsetsGeometry? tilePadding,
  16. CrossAxisAlignment? expandedCrossAxisAlignment,
  17. Alignment? expandedAlignment,
  18. UpTextType? textType,
})

Implementation

const UpExpansionTile({
  Key? key,
  required this.children,
  this.title,
  this.titleWidget,
  this.colorType,
  this.style,
  this.onExpansionChanged,
  this.subtitle,
  this.leading,
  this.trailing,
  this.maintainState = false,
  this.initiallyExpanded = false,
  this.controlAffinity,
  this.childrenPadding,
  this.tilePadding,
  this.expandedCrossAxisAlignment,
  this.expandedAlignment,
  this.textType,
}) : super(key: key);