How do I set the width of a text editor when using .NET Maui SfDataForm?
I want the actual width of the TextEditor box to be 30 when the column width is 100
[Display(GroupName = "Data")]
public string Username { get; set; }
[Display(GroupName = "Data")]
public string Password { get; set; }
[Display(Name = "First Name", GroupName = "Data")]
public string FName { get; set; }
[Display(Name = "Middle Name", GroupName = "Data")]
//Here I want the actual width of the TextEditor box to be 30 when the column width is 1000
public string MName { get; set; }
[Display(Name = "Last Name", GroupName = "Data")]
public string LName { get; set; }