GetTileRow.item constructor

const GetTileRow.item({
  1. dynamic leading,
  2. Widget? trailing,
  3. String? trailingText,
  4. TextStyle? trailingStyle,
  5. List<Widget>? children,
  6. Widget? child,
  7. String? text,
  8. TextStyle? textStyle,
  9. String? hint,
  10. Color? color,
  11. Color? background,
  12. Color? trailingColor,
  13. int? maxLines = kTileRowMaxLines,
  14. FontWeight? fontWeight,
  15. double? fontSize,
  16. double? leadingSize,
  17. double leadingBoxSize = BoxView.kBoxSize,
  18. double? trailingSize = kTileRowTrailingSize,
  19. double? horizontalPadding,
  20. double? verticalPadding,
  21. double? topPadding = kStandardPaddingY,
  22. double? bottomPadding = kStandardPaddingY,
  23. double? leftPadding,
  24. double? rightPadding,
  25. bool expanded = true,
  26. bool leadingFilled = true,
  27. bool leadingTinted = false,
  28. bool leadingSmall = true,
  29. bool leadingOval = false,
  30. bool themed = true,
  31. bool wrap = false,
  32. bool enabled = true,
  33. bool? highlighted,
  34. bool? checked,
  35. bool tintAble = false,
  36. bool? destructive,
  37. bool detail = false,
  38. bool allCaps = false,
  39. bool header = false,
  40. DividerStyle? topDivider,
  41. DividerStyle? bottomDivider,
  42. EdgeInsetsGeometry? padding,
  43. EdgeInsetsGeometry leadingMargin = kTileRowLeadingMargin,
  44. EdgeInsetsGeometry leadingPadding = kTileRowLeadingPadding,
  45. EdgeInsetsGeometry trailingPadding = kTileRowTrailingPadding,
  46. EdgeInsetsGeometry childrenPadding = kTileRowChildrenPadding,
  47. BoxConstraints? constraints = kTileConstraints,
  48. CrossAxisAlignment alignment = CrossAxisAlignment.start,
  49. VoidCallback? onTap,
  50. VoidCallback? onTapLeading,
  51. Key? key,
})

Row with simple content and layout as GetTile.simple

Implementation

const GetTileRow.item({
  this.leading,
  this.trailing,
  this.trailingText,
  this.trailingStyle,
  this.children,
  this.child,
  this.text,
  this.textStyle,
  this.hint,
  this.color,
  this.background,
  this.trailingColor,
  this.maxLines = kTileRowMaxLines,
  this.fontWeight,
  this.fontSize,
  this.leadingSize,
  this.leadingBoxSize = BoxView.kBoxSize,
  this.trailingSize = kTileRowTrailingSize,
  this.horizontalPadding,
  this.verticalPadding,
  this.topPadding = kStandardPaddingY,
  this.bottomPadding = kStandardPaddingY,
  this.leftPadding,
  this.rightPadding,
  this.expanded = true,
  this.leadingFilled = true,
  this.leadingTinted = false,
  this.leadingSmall = true,
  this.leadingOval = false,
  this.themed = true,
  this.wrap = false,
  this.enabled = true,
  this.highlighted,
  this.checked,
  this.tintAble = false,
  this.destructive,
  this.detail = false,
  this.allCaps = false,
  this.header = false,
  this.topDivider,
  this.bottomDivider,
  this.padding,
  this.leadingMargin = kTileRowLeadingMargin,
  this.leadingPadding = kTileRowLeadingPadding,
  this.trailingPadding = kTileRowTrailingPadding,
  this.childrenPadding = kTileRowChildrenPadding,
  this.constraints = kTileConstraints,
  this.alignment = CrossAxisAlignment.start,
  this.onTap,
  this.onTapLeading,
  Key? key,
}) : super(key: key);