forked from dotnet/maui
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build and runtime error after bumping to latest code
- Loading branch information
1 parent
96ff0a6
commit 8e54a9c
Showing
7 changed files
with
35 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
src/Compatibility/Core/src/Tizen/Renderers/RefreshViewRenderer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/Controls/src/Core/Platform/Tizen/Extensions/ButtonExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using static Microsoft.Maui.Controls.Button; | ||
using EButton = ElmSharp.Button; | ||
|
||
namespace Microsoft.Maui.Controls.Platform | ||
{ | ||
public static class ButtonExtensions | ||
{ | ||
public static void UpdateContentLayout(this EButton nativeButton, Button button) | ||
{ | ||
//TODO : Need to impl | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using ElmSharp; | ||
|
||
namespace Microsoft.Maui | ||
{ | ||
internal static class FlowDirectionExtensions | ||
{ | ||
internal static void UpdateFlowDirection(this EvasObject nativeView, IView view) | ||
{ | ||
// TODO: Need to impl | ||
} | ||
} | ||
} |