Skip to content

Commit

Permalink
[Tizen] Port H/V TextAlignment to Editor/Picker Handler
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiejava committed Sep 30, 2021
1 parent 66fb6fd commit 1892c8a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Core/src/Handlers/Editor/EditorHandler.Tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ public static void MapKeyboard(EditorHandler handler, IEditor editor)
handler.NativeView?.UpdateKeyboard(editor);
}

public static void MapHorizontalTextAlignment(EditorHandler handler, IEditor editor)
{
handler.NativeView?.UpdateHorizontalTextAlignment(editor);
}

[MissingMapper]
public static void MapCharacterSpacing(EditorHandler handler, IEditor editor) { }

Expand Down
5 changes: 5 additions & 0 deletions src/Core/src/Handlers/Picker/PickerHandler.Tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ public static void MapHorizontalTextAlignment(PickerHandler handler, IPicker pic
handler.NativeView?.UpdateHorizontalTextAlignment(picker);
}

public static void MapVerticalTextAlignment(PickerHandler handler, IPicker picker)
{
handler.NativeView?.UpdateHorizontalTextAlignment(picker);
}

public static void MapTextColor(PickerHandler handler, IPicker picker)
{
handler.NativeView?.UpdateTextColor(picker);
Expand Down

0 comments on commit 1892c8a

Please sign in to comment.