在网格内的滚动视图中具有Autosize = TextChanges的编辑器,在iOS上不行

时间:2019-04-08 17:09:34

标签: xamarin xamarin.forms

将此内容设置为普通内容页面的内容:

<Grid>
   <Grid.RowDefinitions>
      <RowDefinition Height="*"/>
      <RowDefinition Height="200"/> 
   </Grid.RowDefinitions>
   <ScrollView Grid.Row="0">
         <Editor AutoSize="TextChanges"/>
   </ScrollView>
   <Label Grid.Row="1" Text="Random text" VerticalOptions="FillAndExpand" BackgroundColor="Blue"/>
</Grid>

现在,在iOS上,如果您编写更多内容然后可以在屏幕上显示,则预期的行为是滚动视图向下滚动,因此您始终可以看到自己输入的内容。这也是它在Android上的工作方式。但是,在iOS上,滚动无法正常进行,因此,如果不手动进行滚动操作,您将看不到正在键入的内容。 我猜一定是个错误吗? 这是一个已知问题吗?

0 个答案:

没有答案