wip
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.mycrib.platform
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
|
||||
@Composable
|
||||
actual fun rememberImagePicker(
|
||||
onImagesPicked: (List<ImageData>) -> Unit
|
||||
): () -> Unit {
|
||||
// WASM image picker would require HTML5 file input
|
||||
// This is a placeholder implementation
|
||||
return {
|
||||
// TODO: Implement WASM file input
|
||||
println("Image picker not yet implemented for WASM")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user