StoryEditorUiSettings constructor

const StoryEditorUiSettings({
  1. String doneText = 'Done',
  2. String cancelText = 'Cancel',
  3. TextStyle doneButtonsStyle = const TextStyle(color: Colors.white, fontSize: 16),
  4. EdgeInsets buttonsPadding = const EdgeInsets.symmetric(horizontal: 8),
  5. TextStyle cancelButtonsStyle = const TextStyle(color: Colors.white),
})

Constructor.

Implementation

const StoryEditorUiSettings({
  this.doneText = 'Done',
  this.cancelText = 'Cancel',
  this.doneButtonsStyle = const TextStyle(
    color: Colors.white,
    fontSize: 16,
  ),
  this.buttonsPadding = const EdgeInsets.symmetric(
    horizontal: 8,
  ),
  this.cancelButtonsStyle = const TextStyle(
    color: Colors.white,
  ),
});