79198014

Date: 2024-11-17 19:46:52
Score: 1
Natty:
Report link

You can now use minTileHeight & minVerticalPadding:

Theme(
      data: Theme.of(context).copyWith(
        listTileTheme: Theme.of(context).listTileTheme.copyWith(
              minTileHeight: 0,
              minVerticalPadding: 0,
            ),
      ),
      child: ExpansionTile(

Note: This can also be configured using ListTileTheme after the following PR is merged: https://github.com/flutter/flutter/pull/159053

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmed Elsayed