https://github.com/davigmacode/flutter_wx_tile
A highly customizable widget that extends the capabilities of Flutter's ListTile.
https://github.com/davigmacode/flutter_wx_tile
Last synced: 4 months ago
JSON representation
A highly customizable widget that extends the capabilities of Flutter's ListTile.
- Host: GitHub
- URL: https://github.com/davigmacode/flutter_wx_tile
- Owner: davigmacode
- License: bsd-3-clause
- Created: 2024-03-23T09:29:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-29T10:11:10.000Z (12 months ago)
- Last Synced: 2025-01-21T14:21:33.764Z (5 months ago)
- Language: Dart
- Homepage: https://pub.dev/packages/wx_tile
- Size: 518 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dev/packages/wx_tile)  [](https://www.buymeacoffee.com/davigmacode) [](https://ko-fi.com/davigmacode)
A highly customizable widget that extends the capabilities of Flutter's ListTile.
[](https://davigmacode.github.io/flutter_wx_tile)
[Demo](https://davigmacode.github.io/flutter_wx_tile)
## Usage
To read more about classes and other references used by `wx_tile`, see the [API Reference](https://pub.dev/documentation/wx_tile/latest/).
```dart
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.