1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-02 17:07:06 +01:00

fix(github): release screen error (#183)

This commit is contained in:
Shreyas Thirumalai 2021-02-02 19:30:14 +05:30 committed by GitHub
parent 918d0f3971
commit af3c1655e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,10 @@ class ReleaseItem extends StatelessWidget {
),
SizedBox(height: 10),
],
ExpansionTile(
Card(
color: theme.palette.grayBackground,
margin: EdgeInsets.all(0),
child: ExpansionTile(
title: Text(
'Assets (' + (releaseAssets?.nodes?.length ?? 0).toString() + ')',
style: TextStyle(
@ -108,6 +111,7 @@ class ReleaseItem extends StatelessWidget {
])
],
),
)
],
);
}