Skip to content

Commit 1892c8a

Browse files
committed
[Tizen] Port H/V TextAlignment to Editor/Picker Handler
1 parent 66fb6fd commit 1892c8a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/Core/src/Handlers/Editor/EditorHandler.Tizen.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ public static void MapKeyboard(EditorHandler handler, IEditor editor)
8989
handler.NativeView?.UpdateKeyboard(editor);
9090
}
9191

92+
public static void MapHorizontalTextAlignment(EditorHandler handler, IEditor editor)
93+
{
94+
handler.NativeView?.UpdateHorizontalTextAlignment(editor);
95+
}
96+
9297
[MissingMapper]
9398
public static void MapCharacterSpacing(EditorHandler handler, IEditor editor) { }
9499

src/Core/src/Handlers/Picker/PickerHandler.Tizen.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ public static void MapHorizontalTextAlignment(PickerHandler handler, IPicker pic
8686
handler.NativeView?.UpdateHorizontalTextAlignment(picker);
8787
}
8888

89+
public static void MapVerticalTextAlignment(PickerHandler handler, IPicker picker)
90+
{
91+
handler.NativeView?.UpdateHorizontalTextAlignment(picker);
92+
}
93+
8994
public static void MapTextColor(PickerHandler handler, IPicker picker)
9095
{
9196
handler.NativeView?.UpdateTextColor(picker);

0 commit comments

Comments
 (0)