Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Fixed text link tap area #926

Merged
merged 1 commit into from
Mar 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,16 @@
</FormattedString>
</Label.FormattedText>
</Label>
<Frame HasShadow="False" Padding="0">
<Frame.GestureRecognizers>
<Label
AutomationProperties.IsInAccessibleTree="True"
AutomationProperties.Name="{Binding ConfirmingLogReadText}"
Style="{StaticResource LinkLabelStyleMedium}"
HorizontalOptions="Start"
Text="{x:Static resources:AppResources.SendLogConfirmationPageTextLink1}">
<Label.GestureRecognizers>
<TapGestureRecognizer Command="{Binding Path=OnClickConfirmLogCommand}"/>
</Frame.GestureRecognizers>
<Label
AutomationProperties.IsInAccessibleTree="True"
AutomationProperties.Name="{Binding ConfirmingLogReadText}"
Style="{StaticResource LinkLabelStyleMedium}"
Text="{x:Static resources:AppResources.SendLogConfirmationPageTextLink1}" />
</Frame>
</Label.GestureRecognizers>
</Label>
<Button
AutomationProperties.IsInAccessibleTree="True"
Command="{Binding Path=OnClickSendLogCommand}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
AutomationProperties.IsInAccessibleTree="{Binding IsHowToObtainProcessingNumberVisible}"
AutomationProperties.Name="{Binding HowToReceiveProcessingNumberReadText}"
Margin="0, 0, 0, 0"
HorizontalOptions="Start"
Style="{StaticResource LinkLabelStyleMedium}"
Text="{x:Static resources:AppResources.NotifyOtherPageLabel}"
IsVisible="{Binding IsHowToObtainProcessingNumberVisible}">
Expand Down