This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[Bug] [UWP] ScrollView issue within RefreshView #11326
Labels
Comments
LakshmiNatarajan21
added
s/unverified
New report that has yet to be verified
t/bug 🐛
labels
Jul 6, 2020
@LakshmiNatarajan21 are you still seeing this issue with the latest XF? |
PureWeen
added
the
s/needs-info ❓
A question has been asked that requires an answer before work can continue on this issue.
label
Jul 8, 2020
@PureWeen , Yes, the same issue also occurred in the latest version 4.7.0.1080. |
2 tasks
PureWeen
removed
s/needs-info ❓
A question has been asked that requires an answer before work can continue on this issue.
s/unverified
New report that has yet to be verified
labels
Jul 10, 2020
It's always works for whatever entries are displayed without scrolling, so even if you resize the window, entries that previously worked before they were below the scroll, then don't once they move off-screen and you scroll to them |
In case this helps someone else until this gets fixed, this is what we did to get around this issue: <Grid.Resources>
<ScrollView x:Key="mainUI" />
</Grid.Resources>
<OnPlatform x:TypeArguments="View">
<On Value="{StaticResource mainUI}" Platform="UWP"/>
<OnPlatform.Default>
<RefreshView IsRefreshing="{Binding IsBusy}" Command="{Binding RefreshCommand}" Content="{StaticResource mainUI}"/>
</OnPlatform.Default>
</OnPlatform> This is removes the RefreshView when running on UWP. |
Thanks @chrisevans9629 ... It's ashamed that we have to even do these workarounds in Xamarin. Seems like 80% of my time in Xamarin is figuring out workarounds for all these quirks. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Description
The Entry focus is not updated properly when added inside ScrollView which loaded inside RefreshView. The issue occurs from XF 4.4. (Not sure about the exact workable version). The same working fine in Android and not tested in iOS.
This issue is the same mentioned in the below report,
#11106
The same issue occurs if we add ScrollView inside the RefreshView.
Steps to Reproduce
Note: Entry does not get the focus.
Expected Behavior
Entry should get the focus on clicking.
Actual Behavior
Entry does not get the focus.
Basic Information
Reproduction Link
IssueSample
Workaround
NA
The text was updated successfully, but these errors were encountered: