slick_list_items 1.0.0 copy "slick_list_items: ^1.0.0" to clipboard
slick_list_items: ^1.0.0 copied to clipboard

discontinued
outdated

A collection of slick list items primarily to be used within ListViews.

A collection of ListItems primarily to be used within a ListView.

pub package

Description: #

This package contains a number of slick and adaptable list items that are primarily to be used within ListViews.

Using #

Simply import package: http/slick_list_items.dart and start using the list item you like from the list of following slick list items: *FlatListItem

class TransactionsList extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return ListView.builder(
      itemBuilder: _buildList,
    );
  }

  Widget _buildList(BuildContext context, int index) {
    return FlatListItem.transparent(
      context: context,
      scalePreset: ScalePreset.minimal,
      icon: Icon(Icons.monetization_on, color: Colors.black,),
      leftLabelText: 'Amount',
      leftDataText: '0123456789',
      rightLabelText: 'Description',
      rightDataText: 'Bought grocery at...',
    );
  }
}
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A collection of slick list items primarily to be used within ListViews.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on slick_list_items