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

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