{"id":26477525,"url":"https://github.com/strash/flutter_numeric_text","last_synced_at":"2026-03-10T14:34:38.340Z","repository":{"id":280870741,"uuid":"943445575","full_name":"strash/flutter_numeric_text","owner":"strash","description":"A Flutter widget to animate any text. ","archived":false,"fork":false,"pushed_at":"2025-03-24T10:04:53.000Z","size":6973,"stargazers_count":12,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T00:51:51.993Z","etag":null,"topics":["animation","animation-effects","dart","flutter","flutter-package","flutter-widget","text"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/flutter_numeric_text","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/strash.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-05T18:06:31.000Z","updated_at":"2025-10-13T10:06:11.000Z","dependencies_parsed_at":"2025-03-05T19:37:10.317Z","dependency_job_id":null,"html_url":"https://github.com/strash/flutter_numeric_text","commit_stats":null,"previous_names":["strash/flutter_numeric_text"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/strash/flutter_numeric_text","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strash%2Fflutter_numeric_text","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strash%2Fflutter_numeric_text/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strash%2Fflutter_numeric_text/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strash%2Fflutter_numeric_text/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/strash","download_url":"https://codeload.github.com/strash/flutter_numeric_text/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strash%2Fflutter_numeric_text/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30337305,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T12:41:07.687Z","status":"ssl_error","status_checked_at":"2026-03-10T12:41:06.728Z","response_time":106,"last_error":"SSL_read: 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":["animation","animation-effects","dart","flutter","flutter-package","flutter-widget","text"],"created_at":"2025-03-20T00:47:31.893Z","updated_at":"2026-03-10T14:34:38.317Z","avatar_url":"https://github.com/strash.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"## `Text(data)` → `NumericText(data)`\n\nThis widget allows you to animate any text. The animation is reminiscent of the text animation in SwiftUI's `.numericText(value:)`. The widget is easy to use and allows you to seamlessly replace `Text(data)` with `NumericText(data)`.\n\n## Features\n\n\u003cimg width=\"300\" src=\"https://raw.githubusercontent.com/strash/flutter_numeric_text/refs/heads/main/resources/demo.gif\"/\u003e\n\n- Automatic text animation\n- Minimal configuration required to get started\n- Supports almost all parameters of the `Text()` widget\n- No external dependencies required\n\n## Usage\n\n```dart\nimport 'package:flutter_numeric_text/flutter_numeric_text.dart';\n\nclass MyWidget extends StatelessWidget {\n  const MyWidget({super.key});\n\n  @override\n  Widget build(BuildContext context) {\n    // Simply add the widget, and when its value changes,\n    // it will automatically trigger the animation.\n\n    // To use the widget, you only need to provide\n    // a data value, other fields are optional.\n\n    NumericText(\n      \"12345 or text\",\n      duration: const Duration(milliseconds: 300),\n      style: const TextStyle(fontSize: 24, color: Colors.black),\n      textAlign: TextAlign.center,\n      textDirection: TextDirection.ltr,\n      locale: const Locale(\"en\", \"US\"),\n      softWrap: true,\n      overflow: TextOverflow.ellipsis,\n      maxLines: 1,\n      semanticsLabel: \"Numeric value\",\n    );\n  }\n}\n```\n\n### With `GoogleFonts`\n\n```dart\n...\n    NumericText(\n      \"12345 or text\",\n      duration: const Duration(milliseconds: 300),\n      style: GoogleFonts.\u003cyour_font\u003e(\n        fontSize: 24,\n        color: Colors.black,\n        // Just a friendly reminder to add the [textStyle] field.\n        // It'll make sure everything calculates correctly.\n        textStyle: Theme.of(context).textTheme.bodyMedium,\n      ),\n    );\n...\n```\n\n## Installation\n\nTo use this package, add it to your `pubspec.yaml` file:\n\n```yaml\ndependencies:\n  flutter_numeric_text: ^1.0.0 # Replace with the latest version\n```\n\n## Contributing\n\nContributions are welcome! If you have suggestions for improvements or find bugs, please open an issue or submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](https://github.com/strash/flutter_numeric_text/blob/main/LICENSE) file for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrash%2Fflutter_numeric_text","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstrash%2Fflutter_numeric_text","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrash%2Fflutter_numeric_text/lists"}