https://github.com/fingerart/flutter_ticker
A flutter text widget with scrolling text change animation.
https://github.com/fingerart/flutter_ticker
flutter ticker
Last synced: 2 months ago
JSON representation
A flutter text widget with scrolling text change animation.
- Host: GitHub
- URL: https://github.com/fingerart/flutter_ticker
- Owner: fingerart
- License: apache-2.0
- Created: 2025-03-16T04:51:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-20T15:59:29.000Z (10 months ago)
- Last Synced: 2026-02-16T19:30:15.890Z (5 months ago)
- Topics: flutter, ticker
- Language: Dart
- Homepage: https://fingerart.github.io/flutter_ticker/
- Size: 622 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dartlang.org/packages/flutter_ticker)
[](https://github.com/fingerart/flutter_ticker/stargazers)
[](https://github.com/fingerart/flutter_ticker/network)
[](https://github.com/fingerart/flutter_ticker/blob/main/LICENSE)
[](https://github.com/fingerart/flutter_ticker/issues)
An Flutter text widget with scrolling text change animation.
> [!TIP]
> If this package is useful to you, please remember to give it a star✨ ([Pub](https://pub.dev/packages/flutter_ticker) | [GitHub](https://github.com/fingerart/flutter_ticker)).
## Preview
View [👆demo👆](https://fingerart.github.io/flutter_ticker) online.
| Ticker | Timer & Progress |
|-----------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
|  |  |
## Usage
```yaml
dependencies:
flutter_ticker: ^0.0.1+3
```
```dart
import 'package:flutter_ticker/flutter_ticker.dart';
Ticker(
text:'\$10.24',
)
```
## Support parameters
| Parameters | Optional | Default | Description |
|:-------------|:-------------|:-------------------------|-------------------------------------------|
| `text` | **Required** | | Text content |
| `alignment` | Optional | `TickerAlignment.center` | Text alignment direction |
| `style` | Optional | Inherited from the theme | Text style |
| `duration` | Optional | 500Ms | Animation duration |
| `curve` | Optional | `Curves.ease` | Animation curves |
| `characters` | Optional | `0123456789` | A collection of characters for animations |
## Other Flutter or Dart library
- [flutter_hypertext](https://pub.dev/packages/flutter_hypertext): A highly extensible rich text widget that can automatically parse styles.
- [jpeg_encode_ffi](https://pub.dev/packages/jpeg_encode_ffi): Encode images into Jpeg format through native FFI binding.
- [varint](https://pub.dev/packages/varint): A Dart library for encoding and decoding variable-length quantity (VLQ).
## Other
> This project is a flutter implementation of the [ticker](https://github.com/robinhood/ticker)
> project.