[Solved] android font picker library
Since I couldn’t find any libraries, I implemented the FontPicker myself. Here is Jetpack Compose implementation: mentalTextApi::class) @Composable fun FontPicker( fonts: Map<File, Font>, initialFontPath: String? = null, onFontChosen: (font: Font?) -> Unit, ) { var showMenu by remember { mutableStateOf(false) } var fontPath by remember { mutableStateOf(initialFontPath) } Column( modifier = Modifier .clickable { showMenu … Read more