paintEditorLineWidthCloseButton property

CloseBtn? paintEditorLineWidthCloseButton
final

Custom close button in the paint-editor to close the line-width bottom sheet.

Example:

paintEditorLineWidthCloseButton: (tap) {
  return IconButton(
    onPressed: tap,
    icon: const Icon(Icons.close),
  );
},

Implementation

final CloseBtn? paintEditorLineWidthCloseButton;