linked_text 1.1.3
linked_text: ^1.1.3 copied to clipboard
A Flutter widget that renders text with interpolated tappable links using a simple template syntax.
Changelog #
1.1.3 #
- Updated the
hooksdependency to^2.0.0. - Bumped the minimum Dart SDK constraint to 3.10.0 and the minimum Flutter SDK to 3.38.0, matching the new requirement from
hooks2.0.
1.1.2 #
- Prevent an out-of-bounds URL index in a string template from causing a crash. If an index is out of bounds, the link will simply be non-interactive.
1.1.1 #
- Updated the minimum Dart SDK constraint to 3.6.0.
- Fixed compatibility with Flutter's
gen_l10n: a build hook automatically addsrelax-syntax: truetol10n.yamlwhen missing. If the first build fails, re-running it will succeed.
1.0.0 #
- Initial release.
LinkedTextwidget for rendering text with interpolated tappable links.- Template syntax:
{{link text}}for auto-indexed links,{N{link text}}for explicitly indexed links. - Optional
onTapcallback for custom link handling. - Default URL launching via
url_launcher. - Proper
TapGestureRecognizerlifecycle management.