typing_text 1.0.5
typing_text: ^1.0.5 copied to clipboard
A Flutter package for creating an animated text widget that simulates typing.
A customizable, animated text widget for Flutter apps, simulating the effect of typing. This package is ideal for creating engaging text animations, such as typing effects in chatbots, creative text displays in storytelling apps, or any application where text needs to be displayed dynamically and with visual flair.
Features #
- Animated Typing Effect: Simulates a character-by-character text typing animation that cycles between words.
- Customizable Speed: Control the speed of typing and the delay between words.
- Handles State Changes: Seamless transition when rebuilding the widget with a new list of words.

Getting started #
To use the typing_text package in your Flutter app, first add the dependency to your pubspec.yaml:
flutter pub add typing_text
or
dependencies:
typing_text: ^1.0.5
Then, import the package in your Dart file:
import 'package:typing_text/typing_text.dart';
Usage #
To use the TypingText widget, simply provide a list of words to display, along with optional parameters for customizing the animation speed and text style.
TypingText(
words: ['Hello', 'World'],
letterSpeed: Duration(milliseconds: 100),
wordSpeed: Duration(milliseconds: 1000),
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
)
Additional information #
For more information, bug reports, feature requests, or contributions, please visit the GitHub repository.
Feedback and contributions are welcome!