You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Since 0.29.1-alpha update the postUrl() function is not working anymore
Steps to reproduce
I used to be able to use the old postUrl function the following way:
val state = rememberWebViewState("")
WebView(
state = state,
factory = {
android.webkit.WebView(it).apply {
postUrl(
"https://google.com",
"my_by_array_string".toByteArray()
)
}
}
)
I am not sure if this was the correct way to post data but it was the only way I could get it working. Unfortunately, with the 0.29.1-alpha release it broke.
Expected behavior
I am able to do a postUrl call that also has a parameter called byte[] postData
The text was updated successfully, but these errors were encountered:
Description
Since
0.29.1-alpha
update the postUrl() function is not working anymoreSteps to reproduce
I used to be able to use the old postUrl function the following way:
I am not sure if this was the correct way to post data but it was the only way I could get it working. Unfortunately, with the
0.29.1-alpha
release it broke.Expected behavior
I am able to do a postUrl call that also has a parameter called
byte[] postData
The text was updated successfully, but these errors were encountered: