Skip to content

Commit

Permalink
feat(Mobile): Fixing annoying popover issues on iPadOS
Browse files Browse the repository at this point in the history
  • Loading branch information
macmade committed Dec 9, 2024
1 parent 5d2e400 commit 84ec28c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SDO-Mobile/Views/ImageInfoView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ struct ImageInfoView: View

if let text = self.image.text
{
Text( text ).padding( .top, 10 )
Text( text )
.padding( .top, 10 )
.frame( maxWidth: .infinity, alignment: .leading )
}

VStack( alignment: .leading, spacing: 10 )
Expand Down

0 comments on commit 84ec28c

Please sign in to comment.