Skip to content

Commit 2425d7c

Browse files
committed
Fix signatures in view
Resolved scaling issue (Might have to refactor this into a decent scale later) Aligned signatures to the left.
1 parent d7bed33 commit 2425d7c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Diplomatic/Models/Signature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public Uri ImageUri
1515
get
1616
{
1717
string basePath = $"https://qri7p78aml.execute-api.eu-west-2.amazonaws.com/dev/preview/signature/{Id}";
18-
return new Uri($"{basePath}?width=200&height=80");
18+
return new Uri(basePath);
1919
}
2020
}
2121
}

Diplomatic/Views/Signatures.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</Grid.ColumnDefinitions>
2020

2121
<!--Image -->
22-
<Image Grid.Column="0" Source="{Binding ImageUri}" Aspect="AspectFit" />
22+
<Image Grid.Column="0" Source="{Binding ImageUri}" Aspect="AspectFit" HorizontalOptions="Start"/>
2323
<!-- Text -->
2424
<Label Grid.Column="1"
2525
Text="{Binding Name}"

0 commit comments

Comments
 (0)