Is it possilble to FillAndExpand editor, enclosed by a SfTextInputLayout, using a FlexLayout?

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


2 Replies

SJ Suyamburaja Jayakumar Syncfusion Team April 27, 2020 01:02 PM UTC

Hi Jorge Andrés, 
 
Greetings from Syncfusion.  
 
Currently we are validating the reported query and we will update the complete details on or before 29, April 2020. 
 
We appreciate your patience until then.    
  
Regards,  
Suyamburaja J.  



AS Anandraj Selvam Syncfusion Team May 6, 2020 12:54 PM UTC

Hi Jorge Andrés, 
  
Thanks for the patience. 
  
We have checked the reported query and we suggest you to set HeightRequest for Editor to resolve the issue since the SfTextInputLayout is just an container and it will take the height of an InputView. Please find the sample for your reference. 
  
  
Please revert us for further investigation. 
  
Regards, 
Anand Raj S. 


Loader.
Up arrow icon