style property

  1. @override
TileStyle style
override

The TileStyle to be applied to the Tile widget

Implementation

@override
get style => const TileStyle(
      direction: Axis.horizontal,
      margin: EdgeInsets.zero,
      spacing: 0.0,
      spacingEnforced: false,
      crossAxisAlignment: CrossAxisAlignment.center,
      mainAxisAlignment: MainAxisAlignment.start,
      mainAxisExpanded: false,
      childExpanded: false,
    ).merge(super.style);