I’m setting config.recorderConfiguration.isGalleryButtonHidden
on my iOS module but I don’t know what’s the property for the Android kotlin module, or if it is in CameraConfig
or EditorConfig
.
Hi!
You need to use the code below to hide the gallery button in the VideoEditorModule:
single<CameraConfig>{
CameraConfig(supportsGallery = false)
}
1 Like