|
|
|
@ -147,50 +147,4 @@ class QuillToolbarSearchButton extends StatelessWidget { |
|
|
|
|
), |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Those functions ((findText, moveToPosition)) are not ready yet. |
|
|
|
|
// but consider moving them to a better place |
|
|
|
|
// List<int> _findText({ |
|
|
|
|
// required int index, |
|
|
|
|
// required String text, |
|
|
|
|
// required QuillController controller, |
|
|
|
|
// required List<int> offsets, |
|
|
|
|
// required bool wholeWord, |
|
|
|
|
// required bool caseSensitive, |
|
|
|
|
// bool moveToPosition = true, |
|
|
|
|
// }) { |
|
|
|
|
// if (text.isEmpty) { |
|
|
|
|
// return List.empty(); |
|
|
|
|
// } |
|
|
|
|
// final newOffsets = controller.document.search( |
|
|
|
|
// text, |
|
|
|
|
// caseSensitive: caseSensitive, |
|
|
|
|
// wholeWord: wholeWord, |
|
|
|
|
// ); |
|
|
|
|
// index = 0; // TODO: This might need to be updated... |
|
|
|
|
// if (offsets.isNotEmpty && moveToPosition) { |
|
|
|
|
// _moveToPosition( |
|
|
|
|
// index: index, |
|
|
|
|
// text: text, |
|
|
|
|
// controller: controller, |
|
|
|
|
// offsets: offsets, |
|
|
|
|
// ); |
|
|
|
|
// } |
|
|
|
|
// return newOffsets; |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
// void _moveToPosition({ |
|
|
|
|
// required int index, |
|
|
|
|
// required String text, |
|
|
|
|
// required QuillController controller, |
|
|
|
|
// required List<int> offsets, |
|
|
|
|
// }) { |
|
|
|
|
// controller.updateSelection( |
|
|
|
|
// TextSelection( |
|
|
|
|
// baseOffset: offsets[index], |
|
|
|
|
// extentOffset: offsets[index] + text.length, |
|
|
|
|
// ), |
|
|
|
|
// ChangeSource.LOCAL, |
|
|
|
|
// ); |
|
|
|
|
// } |
|
|
|
|
} |
|
|
|
|