GetTileRow.dense constructor

const GetTileRow.dense({
  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 = kDensePaddingY,
  22. double? bottomPadding = kDensePaddingY,
  23. double? leftPadding = kDensePaddingX,
  24. double? rightPadding = kDensePaddingX,
  25. bool expanded = false,
  26. bool leadingFilled = false,
  27. bool leadingTinted = false,
  28. bool leadingSmall = true,
  29. bool leadingOval = false,
  30. bool themed = false,
  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 = kTileRowLeadingDensePadding,
  45. EdgeInsetsGeometry trailingPadding = kTileRowTrailingPadding,
  46. EdgeInsetsGeometry childrenPadding = kTileRowChildrenPadding,
  47. BoxConstraints? constraints = kTileRowConstraints,
  48. CrossAxisAlignment alignment = CrossAxisAlignment.center,
  49. VoidCallback? onTap,
  50. VoidCallback? onTapLeading,
  51. Key? key,
})

Row with simple content and dense paddings

Implementation

const GetTileRow.dense({
  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 = kDensePaddingY,
  this.bottomPadding = kDensePaddingY,
  this.leftPadding = kDensePaddingX,
  this.rightPadding = kDensePaddingX,
  this.expanded = false,
  this.leadingFilled = false,
  this.leadingTinted = false,
  this.leadingSmall = true,
  this.leadingOval = false,
  this.themed = false,
  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 = kTileRowLeadingDensePadding,
  this.trailingPadding = kTileRowTrailingPadding,
  this.childrenPadding = kTileRowChildrenPadding,
  this.constraints = kTileRowConstraints,
  this.alignment = CrossAxisAlignment.center,
  this.onTap,
  this.onTapLeading,
  Key? key,
}) : super(key: key);