Hello,
There is a known issue reported at GitHub- Buttons offscreen inside ScrollView do not work on iOS, please follow the progress at GitHub.
And you could try the solution:
<ScrollView x:Name="Scroll" >
....
</ScrollView>
Hiding and reshowing the ScrollView.
private void btnAdd_Clicked(object sender, EventArgs e)
{
...
Scroll.IsVisible = false;
Scroll.IsVisible = true;
}
Best Regards,
Wenyan Zhang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.