mirror of
https://gitlab.com/openlp/openlp-mobile-remote.git
synced 2024-12-22 11:52:49 +00:00
service listview v2 finished
This commit is contained in:
parent
1d469f71cb
commit
821b95e442
@ -49,34 +49,31 @@ class _ServiceListViewV2State extends State<ServiceListViewV2> {
|
||||
),
|
||||
);
|
||||
}
|
||||
return ListView.separated(
|
||||
return ListView.builder(
|
||||
padding: EdgeInsets.only(bottom: 35),
|
||||
separatorBuilder: (context, i) {
|
||||
return Divider();
|
||||
},
|
||||
itemCount: serviceItems.length,
|
||||
itemBuilder: (context, i) {
|
||||
ServiceItem item = serviceItems[i];
|
||||
return ListTile(
|
||||
contentPadding: EdgeInsets.all(10),
|
||||
selected: item.selected,
|
||||
leading: Container(
|
||||
// color: Colors.black12,
|
||||
height: 50,
|
||||
width: 50,
|
||||
child: item.plugin.id == 'images'
|
||||
? FittedBox(
|
||||
child: Image.network('https://picsum.photos/500'),
|
||||
fit: BoxFit.cover,
|
||||
)
|
||||
: Icon(item.plugin.icon()),
|
||||
leading: ClipRRect(
|
||||
borderRadius: BorderRadius.all(Radius.circular(7)),
|
||||
child: Container(
|
||||
height: 50,
|
||||
width: 50,
|
||||
child: item.plugin.id == 'images'
|
||||
? FittedBox(
|
||||
child: Image.network('https://picsum.photos/500'),
|
||||
fit: BoxFit.cover,
|
||||
)
|
||||
: Icon(item.plugin.icon()),
|
||||
),
|
||||
),
|
||||
title: Text(item.title),
|
||||
subtitle: Text(item.plugin.id),
|
||||
trailing: IconButton(
|
||||
icon: Icon(
|
||||
Icons.delete,
|
||||
// color: Colors.red,
|
||||
),
|
||||
icon: Icon(Icons.delete),
|
||||
onPressed: () {},
|
||||
),
|
||||
onTap: () {},
|
||||
|
Loading…
Reference in New Issue
Block a user