Skip to content

Commit

Permalink
🐛 Fix missing public identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMichel2 committed Aug 8, 2023
1 parent f6c1b16 commit d7e61b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/src/main/java/com/google/accompanist/web/WebView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public sealed class WebContent {
val historyUrl: String? = null
) : WebContent()

data class Post(
public data class Post(
val url: String,
val postData: ByteArray
) : WebContent() {
Expand Down Expand Up @@ -574,7 +574,7 @@ public class WebViewNavigator(private val coroutineScope: CoroutineScope) {
}
}

fun postUrl(
public fun postUrl(
url: String,
postData: ByteArray
) {
Expand Down Expand Up @@ -697,7 +697,7 @@ public fun rememberWebViewStateWithHTMLData(
* @param postData The data to be posted to the WebView with the url
*/
@Composable
fun rememberWebViewState(
public fun rememberWebViewState(
url: String,
postData: ByteArray
): WebViewState =
Expand Down

0 comments on commit d7e61b6

Please sign in to comment.