Files
ComfyUI/composeApp/src/commonMain/kotlin/moe/uni/comfyKmp/FilePicker.kt
T
anran e5a779e48a
CI / android (push) Failing after 2m14s
chore: move package
2026-01-31 02:51:56 +08:00

19 lines
509 B
Kotlin

package moe.uni.comfyKmp
import androidx.compose.runtime.Composable
/**
* Remembers a file picker launcher that can be used to select JSON files.
* @param onResult Callback with the file content as String, or null if cancelled/failed
* @return A function to launch the file picker
*/
@Composable
expect fun rememberFilePickerLauncher(
onResult: (String?) -> Unit
): () -> Unit
/**
* Returns whether file picking is supported on the current platform
*/
expect fun isFilePickerSupported(): Boolean