fix: remove unneeded padding before ApplicationItems

This commit is contained in:
Alberto Ponces 2022-08-24 15:21:04 +01:00
parent 49b3273df4
commit 2a2a386bae
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@ class AvailableUpdatesCard extends StatelessWidget {
? ListView.builder(
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
padding: EdgeInsets.zero,
itemCount: snapshot.data!.length,
itemBuilder: (context, index) => FutureBuilder<String>(
future: _managerAPI.getAppChangelog(

View File

@ -26,6 +26,7 @@ class InstalledAppsCard extends StatelessWidget {
? ListView.builder(
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
padding: EdgeInsets.zero,
itemCount: snapshot.data!.length,
itemBuilder: (context, index) => FutureBuilder<String>(
future: _managerAPI.getAppChangelog(