Form with Xamarin Forms

1

Good morning, I am starting to study Xamarin forms and I am developing a simple form to keep a few data about work orders, but I would like to know what control I should use to use a text box where I can write several lines or a paragraph that is expand as the paragraph jumps to the next line.

    
asked by Erwin 05.02.2018 в 23:19
source

2 answers

0

Use the Editor.

[Xamarin.Forms.RenderWith(typeof(Xamarin.Forms.Platform._EditorRenderer))]
public class Editor : InputView, IEditorController, IElementConfiguration<Editor>, IFontElement

Reference: link

    
answered by 05.02.2018 в 23:23
-1

In XAML :

Editor 
BackgroundColor="White" VerticalOptions="FillAndExpand"
         HorizontalOptions="FillAndExpand" x:Name="nombre"

With this you can write paragraphs just add the bullets

    
answered by 11.09.2018 в 22:57