Exemplo n.º 1
0
 public static void MapText(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateText(editor);
 }
Exemplo n.º 2
0
        public static void MapFont(EditorHandler handler, IEditor editor)
        {
            var fontManager = handler.GetRequiredService <IFontManager>();

            handler.NativeView?.UpdateFont(editor, fontManager);
        }
Exemplo n.º 3
0
 // This is a Android-specific mapping
 public static void MapBackground(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateBackground(editor, DefaultBackground);
 }
Exemplo n.º 4
0
 public static void MapBackground(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateBackground(editor);
Exemplo n.º 5
0
 public static void MapIsTextPredictionEnabled(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateIsTextPredictionEnabled(editor);
 }
Exemplo n.º 6
0
 public static void MapPlaceholderColor(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdatePlaceholderColor(editor, DefaultPlaceholderTextColors);
 }
Exemplo n.º 7
0
 public static void MapMaxLength(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateMaxLength(editor);
 }
Exemplo n.º 8
0
 public static void MapPlaceholderColor(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdatePlaceholderColor(editor, handler._placeholderDefaultBrush, handler._defaultPlaceholderColorFocusBrush);
 }
Exemplo n.º 9
0
 public static void MapTextColor(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateTextColor(editor);
Exemplo n.º 10
0
 public static void MapVerticalTextAlignment(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateVerticalTextAlignment(editor);
Exemplo n.º 11
0
 public static void MapKeyboard(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateKeyboard(editor);
Exemplo n.º 12
0
 public static void MapHorizontalTextAlignment(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateHorizontalTextAlignment(editor);
Exemplo n.º 13
0
 public static void MapFont(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateFont(editor, handler.GetRequiredService <IFontManager>());
Exemplo n.º 14
0
 public static void MapPlaceholderColor(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdatePlaceholderColor(editor, handler._defaultPlaceholderColors);
Exemplo n.º 15
0
 public static void MapTextColor(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateTextColor(editor, DefaultTextColors);
 }
 public static void MapIsTextPredictionEnabled(EditorHandler handler, IEditor editor)
 {
 }
Exemplo n.º 17
0
 public static void MapPlaceholder(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdatePlaceholder(editor);
 }
 public static void MapTextColor(EditorHandler handler, IEditor editor)
 {
 }
Exemplo n.º 19
0
 public static void MapCharacterSpacing(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateCharacterSpacing(editor);
 }
 public static void MapKeyboard(EditorHandler handler, IEditor editor)
 {
 }
Exemplo n.º 21
0
 public static void MapIsReadOnly(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateIsReadOnly(editor);
 }
Exemplo n.º 22
0
 public static void MapVerticalTextAlignment(EditorHandler handler, IEditor editor)
 {
 }