0 purchases
typing text
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:
dependencies:
typing_text: ^0.1.0
copied to clipboard
Then, import the package in your Dart file:
import 'package:typing_text/typing_text.dart';
copied to clipboard
Usage #
TypingText(
words: ['Hello', 'World'],
letterSpeed: Duration(milliseconds: 100),
wordSpeed: Duration(milliseconds: 1000),
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
)
copied to clipboard
Additional information #
For more information, bug reports, feature requests, or contributions, please visit the GitHub repository.
Feedback and contributions are welcome!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.