From 690c1e6bbc1e870a038e74c262c1a7a101fbc4ee Mon Sep 17 00:00:00 2001 From: Ellet Date: Sat, 30 Dec 2023 15:08:37 +0300 Subject: [PATCH] Remove old comments --- .../lib/flutter_quill_extensions.dart | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/flutter_quill_extensions/lib/flutter_quill_extensions.dart b/flutter_quill_extensions/lib/flutter_quill_extensions.dart index fb305c3c..46d42463 100644 --- a/flutter_quill_extensions/lib/flutter_quill_extensions.dart +++ b/flutter_quill_extensions/lib/flutter_quill_extensions.dart @@ -138,23 +138,6 @@ class FlutterQuillEmbeds { /// If you don't want to show one of the buttons for soem reason, /// pass null to the options of it /// - /// Example of customizing media pick settings for the image button: - /// ```dart - /// mediaPickSettingSelector: (context) async { - /// final mediaPickSetting = await showModalBottomSheet( - /// showDragHandle: true, - /// context: context, - /// constraints: const BoxConstraints(maxWidth: 640), - /// builder: (context) => const SelectImageSourceDialog(), - /// ); - /// if (mediaPickSetting == null) { - /// return null; - /// } - /// return mediaPickSetting; - /// } - /// ``` - /// - /// /// The returned list contains embed button builders for the Quill toolbar. static List toolbarButtons({ QuillToolbarImageButtonOptions? imageButtonOptions =