Fix Image Previews + Make Invitations the correct Size #821

Merged
sarah merged 4 commits from fix-images into trunk 2024-02-13 04:00:17 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 88a8ac8cca - Show all commits

View File

@ -120,7 +120,7 @@ class _ContactRowState extends State<ContactRow> {
)),
Container(
padding: EdgeInsets.all(0),
height: Provider.of<Settings>(context).fontScaling * 14.0 + 5.0,
height: contact.isInvitation ? Provider.of<Settings>(context).fontScaling * 14.0 + 35.0 : Provider.of<Settings>(context).fontScaling * 14.0 + 5.0,
child: contact.isInvitation == true
? Wrap(alignment: WrapAlignment.start, direction: Axis.vertical, children: <Widget>[
Padding(