Hello,
For this requirement, you could use a Grid
to isolate the buttons from the ScrollView.
Please refer to the key snippets below:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="50" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<HorizontalStackLayout Grid.Row="0">
<Button Text="btn1"/>
<Button Text="btn2"/>
<Button Text="btn3"/>
</HorizontalStackLayout>
<ScrollView Grid.Row="1">
</ScrollView>
</Grid>
Best Regards,
Alec Liu.
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.