Exemplo n.º 1
0
 public static void UpdatePlaceholder(this MauiTextView textView, IEditor editor) =>
 textView.PlaceholderText = editor.Placeholder;
Exemplo n.º 2
0
 public static void UpdatePlaceholderColor(this MauiTextView textView, IEditor editor) =>
 textView.PlaceholderTextColor = editor.PlaceholderColor?.ToNative() ?? ColorExtensions.PlaceholderColor;
Exemplo n.º 3
0
 public static void UpdateVerticalTextAlignment(this MauiTextView textView, IEditor editor)
 {
     textView.VerticalTextAlignment = editor.VerticalTextAlignment;
 }