feat: Enable direct chat initiation from agent network, improve GIF rendering in chat, and fix message order and webview authentication.

This commit is contained in:
pradeepkumar
2026-03-15 01:04:36 +05:30
parent 84e9cd9680
commit f659be07ae
5 changed files with 146 additions and 48 deletions

View File

@@ -55,6 +55,12 @@ class _StripeCheckoutScreenState extends State<StripeCheckoutScreen> {
}
return NavigationDecision.navigate;
},
onHttpAuthRequest: (request) {
// Handle auth challenge to prevent WKWebView null assertion crash
request.onProceed(
WebViewCredential(user: '', password: ''),
);
},
),
)
..loadRequest(Uri.parse(widget.url));