select_any

Last updated:

0 purchases

select_any Image
select_any Images
Add to Cart

Description:

select any

select_any #
A complete and flexible library for viewing data in tables or lists

Display in tables on large screens and lists on smaller screens.
Support for paging
Search support
Ordering support
Custom data source support

Screenshots #
Large Screens #


Small Screens #






Example Usage #
Navigator.push(
context,
MaterialPageRoute(
builder: (_) => SelectAnyModule(SelectModel('Example', 'id', [
Line('a'),
Line(
'b',
enclosure: 'My value is: ???',
),
Line('c', enableSorting: false),
Line('d', tableTooltip: 'My Custom Tooltip'),
Line('e', name: 'My Custom Name')
], FontDataAny((data) async {
return List<Map<String, dynamic>>.generate(
100,
(index) => <String, dynamic>{
'id': index,
'a': 'A ${index}',
'b': 'B ${index}',
'c': 'C ${index}',
'd': 'D ${index}',
'e': 'E ${index}'
});
}), TypeSelect.SIMPLE,
theme: SelectModelTheme(
tableTheme:
SelectModelThemeTable(headerColor: Colors.blue))))));
copied to clipboard

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.