Skip to main content

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 is true.
  • supportsColorEffects - Determines whether the editor supports color effects. Default value is true.
  • supportsVisualEffects- Determines whether the editor supports visual effects. Default value is true.
  • supportsVoiceOver - Determines whether the editor supports voice over. Default value is true. (Android only)
  • supportsAudioEditing - Determines whether the editor supports audio editing. Default value is true. (Android only)