Hello!
I have some TextViews and I need to select the text and copy it. For that I need the options to appear.
Like this:
With the following code:
<App>
<StackPanel>
<TextView Margin="30" FontSize="16" TextWrapping="Wrap" Value="I'm a really long text and I need to be selected and copied! I'm a really long text and I need to be selected and copied! I'm a really long text and I need to be selected and copied! I'm a really long text and I need to be selected and copied!" />
</StackPanel>
</App>
on iOS I get:
which is good.
On Android, however, I get:
It doesn’t even select the text. I tried to change keyboards and it doesn’t work.
Wasn’t this supposed to have the same behaviour as shown in the first screenshot? There is any workaround I can try for it to select and show the options on Android?
Thank you.