Setting android: hardwareAccelerated = "false" in Android Manifest causes a problem with this code. Is this a bug in Xamarin.forms? Is there a solution?
<StackLayout>
<Label Text = "Top" x:Name="label1" HeightRequest="100" HorizontalOptions="Center" VerticalOptions="Center"/>
<ScrollView x:Name="scroll" Orientation="Both" >
<StackLayout>
<Label BackgroundColor="Yellow"
Text="1111111111111aaaaaaaaaaaaaaaaaaddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd"
HeightRequest="500"
WidthRequest="150" />
<Label BackgroundColor="Accent"
Text="test2fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
HeightRequest="300"
WidthRequest="150" />
</StackLayout>
</ScrollView>
<Label Text = "bottom" x:Name="label2" HeightRequest="100" HorizontalOptions="Center" VerticalOptions="Center"/>
</StackLayout>