XGridTile constructor

XGridTile({
  1. Key? key,
  2. required Widget child,
  3. Widget? bottomLeft,
  4. Widget? bottomRight,
  5. Widget? bottomCenter,
  6. Widget? topLeft,
  7. Widget? topRight,
  8. Widget? topCenter,
  9. Widget? centerLeft,
  10. Widget? centerRight,
  11. double fontSize = 13,
  12. double? biasY,
  13. double autoBias = 0.5,
  14. EdgeInsets? padding = const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
})

Implementation

XGridTile({
  super.key,
  required this.child,
  this.bottomLeft,
  this.bottomRight,
  this.bottomCenter,
  this.topLeft,
  this.topRight,
  this.topCenter,
  this.centerLeft,
  this.centerRight,
  this.fontSize = 13,
  this.biasY,
  this.autoBias = 0.5,
  this.padding = const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
});