wx_tile

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

wx tile

A highly customizable widget that extends the capabilities of Flutter's ListTile.

Demo
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: () {},
)
copied to clipboard
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.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.