feat: add IsInPwaModeFeedback property to IHasWebViewWithPwaMode interface

This commit is contained in:
Neil Dorin 2026-02-24 14:48:21 -07:00
parent b40200ecae
commit a704e48ae6

View file

@ -42,6 +42,16 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
/// </summary>
public interface IHasWebViewWithPwaMode : IHasWebView
{
/// <summary>
/// Indicates whether the webview is currently in PWA mode
/// </summary>
bool IsInPwaMode { get; }
/// <summary>
/// Indicates whether the webview is currently in PWA mode
/// </summary>
BoolFeedback IsInPwaModeFeedback { get; }
/// <summary>
/// Sends navigators to the specified PWA URL. Accepts an absolute URL or a relative URL for a mobile control app
/// </summary>