{"id":22852197,"url":"https://github.com/knoxpo/flutter_smart_text_view","last_synced_at":"2026-03-04T06:33:27.515Z","repository":{"id":56839812,"uuid":"161379997","full_name":"knoxpo/flutter_smart_text_view","owner":"knoxpo","description":"The coolest, smartest TextView for Flutter.","archived":false,"fork":false,"pushed_at":"2019-12-23T12:02:40.000Z","size":71,"stargazers_count":10,"open_issues_count":3,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-30T09:17:28.130Z","etag":null,"topics":["dart","flutter","knoxpo","pub"],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/knoxpo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-12-11T18:59:23.000Z","updated_at":"2020-07-21T14:31:30.000Z","dependencies_parsed_at":"2022-08-29T05:00:54.492Z","dependency_job_id":null,"html_url":"https://github.com/knoxpo/flutter_smart_text_view","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/knoxpo/flutter_smart_text_view","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knoxpo%2Fflutter_smart_text_view","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knoxpo%2Fflutter_smart_text_view/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knoxpo%2Fflutter_smart_text_view/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knoxpo%2Fflutter_smart_text_view/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/knoxpo","download_url":"https://codeload.github.com/knoxpo/flutter_smart_text_view/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knoxpo%2Fflutter_smart_text_view/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30074199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T05:31:57.858Z","status":"ssl_error","status_checked_at":"2026-03-04T05:31:38.462Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","flutter","knoxpo","pub"],"created_at":"2024-12-13T06:07:30.218Z","updated_at":"2026-03-04T06:33:27.495Z","avatar_url":"https://github.com/knoxpo.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SmartTextView\nThe coolest, smartest TextView for Flutter.\n\n[![Version](https://img.shields.io/badge/version-0.1.0-blue.svg)](https://pub.dartlang.org/packages/smart_text_view)\n[![pub package](https://img.shields.io/pub/v/smart_text_view.svg)](https://pub.dartlang.org/packages/smart_text_view)\n\n[Pub](https://pub.dartlang.org/packages/smart_text_view) - [API Docs](https://pub.dartlang.org/documentation/smart_text_view/latest/) - [GitHub](https://github.com/knoxpo/smart_text_view)\n\n## Features\n\n- Simple text view\n- LinkTextSpan\n- Convert your normal text containing links or hash-tags to clickable\n\n## Version compatibility\n\nSee CHANGELOG for all breaking (and non-breaking) changes.\n\n## Getting started\n\nYou should ensure that you add the router as a dependency in your flutter project.\n```yaml\ndependencies:\n smart_text_view: ^0.1.0\n```\n\n\nYou should then run `flutter packages upgrade` or update your packages in IntelliJ.\n\n## Example Project\n\nThere is a pretty sweet example project in the `example` folder. Check it out. Otherwise, keep reading to get up and running.\n\n## Setting up\n\n```dart\n  SmartText(\n    text:\n        'Hi, this is an example for both link example http://www.google.com and hashtag example #helloWorld @knoxpo',\n    onOpen: (url) {\n      _scaffoldKey.currentState.showSnackBar(\n        SnackBar(\n          content: ListTile(\n            title: Text('Link is clicked!'),\n            subtitle: Text(url),\n          ),\n        ),\n      );\n    },\n    onTagClick: (tag) {\n      _scaffoldKey.currentState.showSnackBar(\n        SnackBar(\n          content: ListTile(\n            title: Text('Tag is clicked!'),\n            subtitle: Text(tag),\n          ),\n        ),\n      );\n    },\n    onUserTagClick: (tag){\n      _scaffoldKey.currentState.showSnackBar(\n        SnackBar(\n          content: ListTile(\n            title: Text('User tag clicked!'),\n            subtitle: Text(tag),\n          ),\n        ),\n      );\n    }\n  );\n```\n\n``\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL KNOXPO BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n``\n\n\u003chr/\u003e\nSmartTextView is a Knoxpo original.\n\u003cbr/\u003e\n\u003ca href=\"https://knoxpo.com\" target=\"_knoxpo\"\u003e\n\u003cimg src=\"https://www.knoxpo.com/assets/logo.png\"\n  width=\"60\"\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknoxpo%2Fflutter_smart_text_view","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fknoxpo%2Fflutter_smart_text_view","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknoxpo%2Fflutter_smart_text_view/lists"}