Hi there,
I've been trying to make an editor, enclosed by a SfTextInputLayout, to grow, so that it occupies all the available space inside a FlexLayout -using the FlexLayout.Grow property- but it doesn't seem to work.
Using the following, the SfTextInputLayout fills and expand to occupy the available space, but the editor does not:
<FlexLayout
Direction="Column"
FlexLayout.Grow="0.4"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<textInputLayout:SfTextInputLayout
ContainerType="Filled"
FlexLayout.Grow="1"
Hint="Comentarios"
BackgroundColor="Yellow"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<Editor
AutoSize="TextChanges"
FlexLayout.Grow="1"
HeightRequest="50"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand" />
</textInputLayout:SfTextInputLayout>
</FlexLayout>
Is it possible to make the editor fill the available space without having to rely on using the AutoSize="TextChanges" property of the Editor.
Thanks in advance,
Jorge