Editor screen on Flutter
Usage
Specify instance of EditorConfig in FeaturesConfig builder:
final config = FeaturesConfigBuilder()
.setEditorConfig(
EditorConfig(
enableVideoAspectFill: false,
supportsColorEffects: false,
supportsVisualEffects: false,
supportsVoiceOver: false,
supportsAudioEditing: false
)
)
...
.build()
Options
enableVideoAspectFill- Fill video aspect on the editor screen while playback. Default value istrue.supportsColorEffects- Determines whether the editor supports color effects. Default value istrue.supportsVisualEffects- Determines whether the editor supports visual effects. Default value istrue.supportsVoiceOver- Determines whether the editor supports voice over. Default value istrue. (Android only)supportsAudioEditing- Determines whether the editor supports audio editing. Default value istrue. (Android only)