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, folderIconColor: Color = MaterialTheme.colorScheme.tertiary, fileIconColor: Color = MaterialTheme.colorScheme.primary, resizableFileInfoDialog: Boolean = true, 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.