mirror of
https://github.com/ente-io/ente.git
synced 2025-08-07 23:18:10 +00:00
[mob] Add scrollbar for backup status
This commit is contained in:
parent
dd1321a555
commit
ae52adc0f5
@ -132,17 +132,23 @@ class _BackupStatusScreenState extends State<BackupStatusScreen> {
|
||||
],
|
||||
),
|
||||
)
|
||||
: ListView.builder(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
vertical: 20,
|
||||
horizontal: 16,
|
||||
: Scrollbar(
|
||||
child: ListView.builder(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
vertical: 20,
|
||||
horizontal: 16,
|
||||
),
|
||||
shrinkWrap: false,
|
||||
primary: true,
|
||||
prototypeItem: Container(height: 70),
|
||||
itemBuilder: (context, index) {
|
||||
return BackupItemCard(
|
||||
item: allItems[index],
|
||||
key: ValueKey(allItems[index].file.uploadedFileID),
|
||||
);
|
||||
},
|
||||
itemCount: allItems.length,
|
||||
),
|
||||
shrinkWrap: true,
|
||||
primary: false,
|
||||
itemBuilder: (context, index) {
|
||||
return BackupItemCard(item: allItems[index]);
|
||||
},
|
||||
itemCount: allItems.length,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user