Пример #1
0
 public static void UpdatePlaceholder(this MauiTextView textView, IEditor editor) =>
 textView.PlaceholderText = editor.Placeholder;
Пример #2
0
 public static void UpdatePlaceholderColor(this MauiTextView textView, IEditor editor) =>
 textView.PlaceholderTextColor = editor.PlaceholderColor?.ToNative() ?? ColorExtensions.PlaceholderColor;
Пример #3
0
 public static void UpdateVerticalTextAlignment(this MauiTextView textView, IEditor editor)
 {
     textView.VerticalTextAlignment = editor.VerticalTextAlignment;
 }