GetTile.simple constructor

const GetTile.simple({
  1. dynamic leading,
  2. String? title,
  3. String? subtitle,
  4. Widget? titleChild,
  5. Widget? subtitleChild,
  6. List<Widget>? titleChildren,
  7. List<Widget>? subtitleChildren,
  8. String? titleHint,
  9. String? subtitleHint,
  10. String? trailingTop,
  11. Widget? trailingTopChild,
  12. String? trailingBottom,
  13. Widget? trailingBottomChild,
  14. String? trailingTitle,
  15. Widget? trailingTitleChild,
  16. String? trailingSubtitle,
  17. Widget? trailingSubtitleChild,
  18. TextStyle? titleStyle,
  19. TextStyle? subtitleStyle,
  20. TextStyle? trailingStyle,
  21. Widget? accessory,
  22. List<Widget>? rows,
  23. List<Widget>? belowRows,
  24. Color? color,
  25. Color? background,
  26. Color? headColor,
  27. Color? trailingColor,
  28. bool leadingFilled = true,
  29. bool leadingTinted = false,
  30. bool leadingSmall = false,
  31. bool leadingOval = false,
  32. bool detail = false,
  33. bool? padAccessory,
  34. bool? showAccessory,
  35. bool? tintAccessory,
  36. bool? tintAble,
  37. FontWeight? titleWeight = FontWeight.w600,
  38. FontWeight? subtitleWeight,
  39. bool titleSubbed = false,
  40. bool subtitleSubbed = true,
  41. bool? destructive,
  42. bool titleExpanded = false,
  43. bool subtitleExpanded = false,
  44. bool enabled = true,
  45. bool? highlighted,
  46. bool? checked,
  47. double? horizontalPadding,
  48. double? verticalPadding,
  49. double? topPadding,
  50. double? bottomPadding,
  51. double? leftPadding,
  52. double? rightPadding,
  53. double? trailingPadding,
  54. double verticalSpacing = 0,
  55. double? titleSize = kTileFontSize,
  56. double? subtitleSize = kTileFontSize,
  57. double? leadingSize,
  58. double? accessorySize,
  59. double? trailingSize = kTileRowTrailingSize,
  60. int? titleMaxLines,
  61. int? subtitleMaxLines,
  62. EdgeInsetsGeometry? padding,
  63. EdgeInsetsGeometry leadingMargin = kTileRowLeadingMargin,
  64. EdgeInsetsGeometry leadingPadding = kTileRowLeadingPadding,
  65. EdgeInsetsGeometry titleChildrenPadding = kTileRowChildrenPadding,
  66. EdgeInsetsGeometry subtitleChildrenPadding = kTileRowChildrenPadding,
  67. BoxConstraints? constraints = kTileConstraints,
  68. CrossAxisAlignment alignment = CrossAxisAlignment.start,
  69. VoidCallback? onTapTitle,
  70. VoidCallback? onTapSubtitle,
  71. VoidCallback? onTap,
  72. VoidCallback? onTapHead,
  73. VoidCallback? onTapLeading,
  74. Key? key,
})

Tile with no accessory

Implementation

const GetTile.simple({
  this.leading,
  this.title,
  this.subtitle,
  this.titleChild,
  this.subtitleChild,
  this.titleChildren,
  this.subtitleChildren,
  this.titleHint,
  this.subtitleHint,
  this.trailingTop,
  this.trailingTopChild,
  this.trailingBottom,
  this.trailingBottomChild,
  this.trailingTitle,
  this.trailingTitleChild,
  this.trailingSubtitle,
  this.trailingSubtitleChild,
  this.titleStyle,
  this.subtitleStyle,
  this.trailingStyle,
  this.accessory,
  this.rows,
  this.belowRows,
  this.color,
  this.background,
  this.headColor,
  this.trailingColor,
  this.leadingFilled = true,
  this.leadingTinted = false,
  this.leadingSmall = false,
  this.leadingOval = false,
  this.detail = false,
  this.padAccessory,
  this.showAccessory,
  this.tintAccessory,
  this.tintAble,
  this.titleWeight = FontWeight.w600,
  this.subtitleWeight,
  this.titleSubbed = false,
  this.subtitleSubbed = true,
  this.destructive,
  this.titleExpanded = false,
  this.subtitleExpanded = false,
  this.enabled = true,
  this.highlighted,
  this.checked,
  this.horizontalPadding,
  this.verticalPadding,
  this.topPadding,
  this.bottomPadding,
  this.leftPadding,
  this.rightPadding,
  this.trailingPadding,
  this.verticalSpacing = 0,
  this.titleSize = kTileFontSize,
  this.subtitleSize = kTileFontSize,
  this.leadingSize,
  this.accessorySize,
  this.trailingSize = kTileRowTrailingSize,
  this.titleMaxLines,
  this.subtitleMaxLines,
  this.padding,
  this.leadingMargin = kTileRowLeadingMargin,
  this.leadingPadding = kTileRowLeadingPadding,
  this.titleChildrenPadding = kTileRowChildrenPadding,
  this.subtitleChildrenPadding = kTileRowChildrenPadding,
  this.constraints = kTileConstraints,
  this.alignment = CrossAxisAlignment.start,
  this.onTapTitle,
  this.onTapSubtitle,
  this.onTap,
  this.onTapHead,
  this.onTapLeading,
  Key? key,
}) : super(key: key);