XGridTile constructor
XGridTile({
- Key? key,
- required Widget child,
- Widget? bottomLeft,
- Widget? bottomRight,
- Widget? bottomCenter,
- Widget? topLeft,
- Widget? topRight,
- Widget? topCenter,
- Widget? centerLeft,
- Widget? centerRight,
- double fontSize = 13,
- double? biasY,
- double autoBias = 0.5,
- 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),
});