public static void MapIsPassword(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateIsPassword(entry);
 }
 public static void MapHorizontalTextAlignment(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateHorizontalTextAlignment(entry);
 }
예제 #3
0
 public static void MapClearButtonVisibility(EntryHandler handler, IEntry entry)
 {
     handler.TypedNativeView?.UpdateClearButtonVisibility(entry, ClearButtonDrawable);
 }
 public static void MapTextColor(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateTextColor(entry);
 }
 public static void MapIsReadOnly(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateIsReadOnly(entry);
 }
 public static void MapReturnType(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateReturnType(entry);
 }
예제 #7
0
 public static void MapText(EntryHandler handler, IEntry entry)
 {
     handler.TypedNativeView?.UpdateText(entry);
 }
 public static void MapPlaceholder(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdatePlaceholder(entry);
 }
예제 #9
0
 public static void MapCursorPosition(EntryHandler handler, IEntry entry) =>
 handler.NativeView?.UpdateCursorPosition(entry);
예제 #10
0
 public static void MapSelectionLength(EntryHandler handler, IEntry entry) =>
 handler.NativeView?.UpdateSelectionLength(entry);
예제 #11
0
 public static void MapFont(EntryHandler handler, IEntry entry) =>
 handler.NativeView?.UpdateFont(entry, handler.GetRequiredService <IFontManager>());
예제 #12
0
 public static void MapBackground(EntryHandler handler, IEntry entry) =>
 handler.NativeView?.UpdateBackground(entry);
예제 #13
0
 public static void MapText(EntryHandler handler, IEntry entry) =>
 handler.NativeView?.UpdateText(entry);
 public static void MapVerticalTextAlignment(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateVerticalTextAlignment(entry);
 }
예제 #15
0
 public static void MapTextColor(EntryHandler handler, IEntry entry)
 {
     handler.TypedNativeView?.UpdateTextColor(entry, DefaultTextColor);
 }
 public static void MapMaxLength(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateMaxLength(entry);
 }
예제 #17
0
 public static void MapKeyboard(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateKeyboard(entry);
 }
 public static void MapPlaceholderColor(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdatePlaceholderColor(entry, handler._defaultPplaceholderBrush, handler._defaultPlaceholderColorFocusBrush);
 }
예제 #19
0
 public static void MapIsTextPredictionEnabled(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateIsTextPredictionEnabled(entry);
 }
        public static void MapFont(EntryHandler handler, IEntry entry)
        {
            var fontManager = handler.GetRequiredService <IFontManager>();

            handler.NativeView?.UpdateFont(entry, fontManager);
        }
 public static void MapCharacterSpacing(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateCharacterSpacing(entry);
 }
 public static void MapClearButtonVisibility(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateClearButtonVisibility(entry);
 }
예제 #23
0
 // This is a Android-specific mapping
 public static void MapBackground(EntryHandler handler, IEntry entry)
 {
     handler.NativeView?.UpdateBackground(entry, DefaultBackground);
 }