Resolves #339 Authenticated webview for panels and config sections
This commit is contained in:
@ -18,7 +18,9 @@ class LinkToWebConfig extends StatelessWidget {
|
||||
overflow: TextOverflow.ellipsis,
|
||||
style: new TextStyle(fontWeight: FontWeight.bold, fontSize: Sizes.largeFontSize)),
|
||||
subtitle: Text("Tap to opne web version"),
|
||||
onTap: () => HAUtils.launchURLInCustomTab(context: context, url: this.url),
|
||||
onTap: () {
|
||||
Launcher.launchAuthenticatedWebView(context: context, url: this.url, title: this.name);
|
||||
},
|
||||
)
|
||||
],
|
||||
),
|
||||
|
Reference in New Issue
Block a user