Skip to content

Commit

Permalink
fix: Make ResponsiveHelper public (#948)
Browse files Browse the repository at this point in the history
  • Loading branch information
eriklimakc committed Dec 5, 2023
1 parent 09bc35d commit c802765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.Toolkit.UI/Helpers/ResponsiveHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static ResponsiveLayout Create(double narrowest, double narrow, double no
};
}

internal class ResponsiveHelper
public class ResponsiveHelper
{
private static readonly Lazy<ResponsiveHelper> _instance = new Lazy<ResponsiveHelper>(() => new ResponsiveHelper());
private static readonly ResponsiveHelper _debugInstance = new();
Expand Down

0 comments on commit c802765

Please sign in to comment.