Hi,
I have the below ScrollView which holds my data but I want to allow the user to Pull to Refresh it, just like the Weather apps where the data is scrollable but at the same time user can pull to refresh.
How can I achieve this please?
<ScrollView Grid.Row="1" VerticalScrollBarVisibility="Never" HorizontalScrollBarVisibility="Never">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
.........
........
........
........
</Grid>
</ScrollView>
Thanks,
Jassim