Package-level declarations

Functions

Link copied to clipboard
@Composable
fun FileChooserDialog(title: String = "Choose File", startDirectory: File = File(System.getProperty("user.home") + "/Downloads"), allowedExtensions: List<String>? = null, colors: FileChooserColors = FileChooserDefaults.colors(), resizableFileInfoDialog: Boolean = true, allowSoftWrapFolderName: Boolean = false, allowSoftWrapFileName: Boolean = false, onFileSelected: (File) -> Unit, onCancel: () -> Unit)

Displays a file selection dialog with smart file type icons and optional extension filtering.

Link copied to clipboard
@Composable
fun FileChooserDialogSample()

A sample composable function demonstrating the usage of the FileChooserDialog.