I'm making app with using Xamarin.forms.
My problem is there is no way to create TWO line TextView. The text will be automatically go to next line even if I set enough width.
If I want to create single line, I set singleline property as true and setMaxLine as 1.
But the Two line, If I set both of LineNumber and MaxLineNumber, it does not work. Text will makes third line. for example, if text value is "I'm a baby not robot.\nPlease give me a milk", it goes like
I'm a baby not robot.
Please give me
a milk
How to solve this problem?
Thanks.