- Update readme about HarmonyOS
- Migrate to Flutter 3.16.0
- Migrate to Flutter 3.13.0
- Fix Flutter 3.10 onTap not triggered inside TextOverflowWidget #147
- Migrate to Flutter 3.10.0
- Refactoring codes and sync codes from 3.10.0
- Support SelectionArea
- Breaking change: Remove [ExtendedText.textSelectionGestureDetectorBuilder],[ExtendedText.shouldShowSelectionHandles],[ExtendedText.selectionHeightStyle],[sExtendedText.electionWidthStyle],[ExtendedText.dragStartBehavior],[ExtendedText.selectionEnabled], [ExtendedTextSelectionPointerHandler]. They are all refer to selection function. It's replaced by SelectionArea.
- Add [ExtendedText.canSelectPlaceholderSpan] control selection behavior.
- fix issue on ios after flutter version 3.7.0. #191 #198
- Migrate to 3.7.0
- Add TextOverflowWidget.clearType
- Fix cutOffInlineSpan should take care of emoji #131.
- Migrate to 3.0.0
- Migrate to 2.10.0.
- Add shouldShowSelectionHandles and textSelectionGestureDetectorBuilder call back to define the behavior of handles and toolbar.
- Shortcut support for web and desktop.
- Fix selectionWidthStyle and selectionHeightStyle are not working.
- Support copy on desktop
- Migrate to 2.8
- Stop hittest if overflowWidget is not hit but overflowRect contains hit pointer.
- Add [SpecialTextSpan.mouseCursor], [SpecialTextSpan.onEnter] and [SpecialTextSpan.onExit].
- merge code from 2.2.0
- Fix overflow rect is not right if overflowSelection has no selection(may be empty text).
- Remove unnecessary assert (assert(textPainter.width >= lastChild!.size.width))
- Initialize _offset with Offset.zero.
- Fix find no overflow endless loop. #105
- Store raw text to reduce layout.
- Fix hitTest is failed when set TextOverflowWidget and selectionEnabled false.
- Fix text is cut off when set TextOverflowPosition.end.
- Remove unnecessary canvas.save() when clear _overflowRect
- Improve performance when find no overflow.
- Add [TextOverflowWidget.position] to support show overflow at start, middle or end. flutter/flutter#45336
- Add [ExtendedText.joinZeroWidthSpace] to make line breaking and overflow style better. flutter/flutter#18761
- Fix strutStyle not work.
- Breaking change: remove [TextOverflowWidget.fixedOffset]
- Breaking change: [SpecialText.getContent] is not include endflag now.(please check if you call getContent and your endflag length is more than 1)
- Fix issue that childIndex == children.length assert false in assembleSemanticsNode when use overflowWidget and text is not overflow.
- Fix issue that the overflowWidget is not layout #97
- Fix null-safety error #96
- Fix null-safety error
- Add add SemanticsInformation for overflowWidget
- Improve performance for overflowWidget
- Do not paint Selection in the region of overFlowWidget
- Support null-safety
- Support keyboard copy on web/desktop
- Fix wrong position of caret
- Change handleSpecialText to hasSpecialInlineSpanBase(extended_text_library)
- Add hasPlaceholderSpan(extended_text_library)
- Fix wrong offset of WidgetSpan #86
- Merge from Flutter v1.20
- Fix throw exception when set OverflowWidget and has no visual overflow.
- Breaking change: fix typos OverflowWidget.
- Support OverflowWidget ExtendedText.
- Breaking change: remove overflowTextSpan.
- Fix wrong calculation about selection handles.
- Merge code from 1.17.0
- Fix analysis_options
- Fix error about TargetPlatform.macOS
- Fix issue that Index out of range for overflow WidgetSpan
- Fix issue that TextPainter was not layout
- extract method for TextSelection
- codes base on 1.12.13+hotfix.5
- set limitation of flutter sdk >=1.12.13 <1.12.16
- Fix kMinInteractiveSize is missing in high version of flutter
- Fix text overflow about WidgetSpan
- Improve codes about selection
- Select all SpecialTextSpan which deleteAll is true when double tap or long tap
- Fix issue ImageSpan is not TextSpan(fluttercandies#24)
- Fix wrong selection offset
- Fix wrong text clip due to overflowspan
- Fix issue type 'List' is not a subtype of type 'List'(fluttercandies#20)
- Improve codes base on v1.7.8
- Support WidgetSpan (ExtendedWidgetSpan)
- Breaking change: Remove background parameter of OverFlowTextSpan
- Issue: Fix textEditingValue and textSelectionControls are not update when didUpdateWidget
- Feature: Support text selection
- Issue: Fix issue about rect of overFlowTextSpan
- Update extended_text_library
- Update path_provider 1.1.0
- Update extended_text_library Remove caretIn parameter(SpecialTextSpan) DeleteAll parameter has the same effect as caretIn parameter(SpecialTextSpan)
- Fix wrong background rect of OverFlowTextSpan when over flow area has image span
- Fix wrong background rect of OverFlowTextSpan(issue 6)
- Disabled informationCollector to keep backwards compatibility for now (ExtendedNetworkImageProvider)
- Add GestureRecognizer for ImageSpan
- Add demo to show image in photo view
- Handle image span load failed
- Update extended_text_library for cache folder is changed
- Update extended_text_library for BackgroundTextSpan
- Override compareTo method in BackgroundTextSpan and OverFlowTextSpan to Fix issue that it was error rendering
- Import extended_text_library
- Fix issue that tap exception throw when use OverFlowTextSpan
- Add clearFailedCache parameter for CachedNetworkImage Add clearLoadFailedImageMemoryCache method Both them are used to clear image load failed memory cache, so that image will be reloaded
- Update path_provider version from 0.4.1 to 0.5.0+1
- Change SpecialTextGestureTapCallback input from string to dynamic
- Change BeforePaintImage function to BeforePaintTextImage Change AfterPaintImage function to AfterPaintTextImage
- Fix issue that BackgroundTextSpan has error clip.
- Add TextPainter wholeTextPainter for BackgroundTextSpan's paintBackground call back,so that you can get info for whole text painter.
- Fix issue that find TextPosition near overflow is not accurate.
- Use ExtendedTextOverflow to replace TextOverflow(new flutter sdk TextOverflow has new value TextOverflow.visible)
- Suport inline image, custom background ,custom over flow.