-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(reg): Fix support of Android versions below 30 (including UI test…
… failing on CI)
- Loading branch information
Showing
3 changed files
with
53 additions
and
34 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
src/Uno.UI/UI/Xaml/FrameworkElement.EffectiveViewport.Interface.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,18 @@ | ||
#nullable enable | ||
|
||
using System; | ||
using System.Linq; | ||
|
||
namespace Windows.UI.Xaml | ||
{ | ||
// Internal interface used to allow communication between the real FrameworkElement | ||
// and presenters that are only implementing the IFrameworkElement interface (cf. FrameworkElementMixins.tt). | ||
// It must not be used anywhere else out of the file. | ||
internal interface IFrameworkElement_EffectiveViewport | ||
{ | ||
void InitializeEffectiveViewport(); | ||
IDisposable RequestViewportUpdates(bool isInternal, IFrameworkElement_EffectiveViewport? child = null); | ||
void OnParentViewportChanged(bool isInitial, bool isInternal, IFrameworkElement_EffectiveViewport parent, ViewportInfo viewport); | ||
void OnLayoutUpdated(); | ||
} | ||
} |
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