The soft keyboard on iOS hides the rich text editor when I focus on it. I have to manually scroll up to reveal the editor after keyboard opens.
Before focus:
After focus:
This is how my page's XAML is structured:
<ContentPage.Content>
<Grid>
<Grid RowDefinitions="{OnPlatform Android='42,50,1,*', iOS='42,62,0.8,*'}" ColumnDefinitions="40,*,38" ColumnSpacing="0" RowSpacing="{OnPlatform Android='5', iOS='0'}" xct:SafeAreaEffect.SafeArea="false,true,false,false">
<ScrollView Grid.Row="3" Grid.ColumnSpan="3" BackgroundColor="{StaticResource WhiteColor}">
<StackLayout Spacing="5">
<Frame HasShadow="False" Padding="0,10,0,0" CornerRadius="8" BorderColor="{StaticResource GreyColor4Light}" Margin="16,0">
<richtexteditor:SfRichTextEditor ScrollOrientation="None" VerticalOptions="FillAndExpand" Text= "The rich text editor component is WYSIWYG editor that provides the best user experience to create and update the content" />
</Frame>
</StackLayout>
</ScrollView>
</Grid>
</Grid>
</ContentPage.Content>