//MetaPhrase/com.github.diegoberaldin.metaphrase.core.common.ui.components/CustomSaveFileDialog
CustomSaveFileDialog
[jvm]\
@Composable
fun CustomSaveFileDialog(title: String = "", initialFileName: String = "", nameFilter: (String) -> Boolean = { true }, parent: Frame? = null, onCloseRequest: (result: String?) -> Unit)
Custom save file dialog.
Parameters
jvm
title | Dialog title |
initialFileName | Initial file name |
nameFilter | Name filter (return true if and only if the name matches the wanted format) |
parent | Parent |
onCloseRequest | On close callback |