Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for the navigation to the SelectAllText page on macOS #1402

Merged
merged 3 commits into from
Sep 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@


<Label FontAttributes="Italic" Text="Entry without the effect, when focused no text will be selected" />
<Border BackgroundColor="{StaticResource SoftBorderBackgroundColor}" >
<Border BackgroundColor="{StaticResource SoftFrameBackgroundColor}" >
vhugogarcia marked this conversation as resolved.
Show resolved Hide resolved
<Entry
BackgroundColor="{StaticResource PrimaryColor}"
PlaceholderColor="{StaticResource DarkLabelPlaceholderColor}"
Text="https://github.com/xamarin/XamarinCommunityToolkit"
Text="https://github.com/CommunityToolkit/Maui/"
TextColor="{StaticResource DarkLabelTextColor}" />
</Border>

<Label FontAttributes="Italic" Text="Entry with the effect, when focused all text will be selected" />
<Border BackgroundColor="{StaticResource SoftBorderBackgroundColor}" >
<Border BackgroundColor="{StaticResource SoftFrameBackgroundColor}" >
<Entry
BackgroundColor="{StaticResource PrimaryColor}"
PlaceholderColor="{StaticResource DarkLabelPlaceholderColor}"
Text="https://github.com/xamarin/XamarinCommunityToolkit"
Text="https://github.com/CommunityToolkit/Maui/"
TextColor="{StaticResource DarkLabelTextColor}">
<Entry.Behaviors>
<mct:SelectAllTextBehavior />
Expand All @@ -52,32 +52,29 @@
Text="Editor"
TextColor="{StaticResource DarkLabelTextColor}" />


<Label FontAttributes="Italic" Text="Editor without the effect, when focused no text will be selected" />
<Border BackgroundColor="{StaticResource SoftBorderBackgroundColor}" >
<Border BackgroundColor="{StaticResource SoftFrameBackgroundColor}" >
<Editor PlaceholderColor="{StaticResource DarkLabelPlaceholderColor}"
TextColor="{StaticResource DarkLabelTextColor}"
BackgroundColor="{StaticResource PrimaryColor}">
<Editor.Text>
Yeah, but your scientists were so preoccupied with whether or not they could, they didn't stop to think if they should. Must go faster... go, go, go, go, go! You know what? It is beets. I've crashed into a beet truck. Is this my espresso machine? Wh-what is-h-how did you get my espresso machine?
Just my luck, no ice. I gave it a cold? I gave it a virus. A computer virus. Must go faster... go, go, go, go, go! God creates dinosaurs. God destroys dinosaurs. God creates Man. Man destroys God. Man creates Dinosaurs. Yeah, but your scientists were so preoccupied with whether or not they could, they didn't stop to think if they should.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</Editor.Text>
</Editor>
</Border>



<Label FontAttributes="Italic" Text="Editor with the effect, when focused all text will be selected" />
<Border BackgroundColor="{StaticResource SoftBorderBackgroundColor}" >
<Border BackgroundColor="{StaticResource SoftFrameBackgroundColor}" >
<Editor PlaceholderColor="{StaticResource DarkLabelPlaceholderColor}"
TextColor="{StaticResource DarkLabelTextColor}"
BackgroundColor="{StaticResource PrimaryColor}">
<Editor.Behaviors>
<mct:SelectAllTextBehavior />
</Editor.Behaviors>
<Editor.Text>
Yeah, but your scientists were so preoccupied with whether or not they could, they didn't stop to think if they should. Must go faster... go, go, go, go, go! You know what? It is beets. I've crashed into a beet truck. Is this my espresso machine? Wh-what is-h-how did you get my espresso machine?
Just my luck, no ice. I gave it a cold? I gave it a virus. A computer virus. Must go faster... go, go, go, go, go! God creates dinosaurs. God destroys dinosaurs. God creates Man. Man destroys God. Man creates Dinosaurs. Yeah, but your scientists were so preoccupied with whether or not they could, they didn't stop to think if they should.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</Editor.Text>
</Editor>
</Border>
Expand Down