A highly customizable widget that extends the capabilities of Flutter's ListTile.
Usage
To read more about classes and other references used by wx_tile
, see the API Reference.
WxTile(
spacing: 10,
leading: Text('Leading'),
trailing: Text('Trailing'),
child: Text('Horizontal Tile'),
)
WxTextTile(
title: Text('Title'),
subtitle: Text('Subtitle'),
spacing: 5,
align: TextAlign.right,
)
WxListTile(
title: const Text('title'),
subtitle: const Text('subtitle'),
leading: const Icon(Icons.access_time),
trailing: IconButton(
icon: const Icon(Icons.close),
onPressed: () {},
),
textColor: Colors.blue,
iconColor: Colors.amber,
margin: const EdgeInsets.all(15),
onTap: () {},
)
WxInlineTile(
title: const Text('title'),
subtitle: const Text('subtitle'),
leading: const Icon(Icons.access_time),
trailing: IconButton(
icon: const Icon(Icons.close),
onPressed: () {},
),
textColor: Colors.blue,
iconColor: Colors.amber,
margin: const EdgeInsets.all(15),
onTap: () {},
)
Sponsoring
If this package or any other package I created is helping you, please consider to sponsor me so that I can take time to read the issues, fix bugs, merge pull requests and add features to these packages.