basic_animated_text 0.0.1 copy "basic_animated_text: ^0.0.1" to clipboard
basic_animated_text: ^0.0.1 copied to clipboard

BasicAnimatedText is a custom Flutter widget designed to create an animated text effect where the text appears and then deletes itself character by character.

Overview #

BasicAnimatedText is a custom Flutter widget designed to create an animated text effect where the text appears and then deletes itself character by character. This widget is ideal for creating engaging text animations in your Flutter applications.

Buy Me A Coffee ☕️ #

Buy Me A Coffee

Features #

Customizable Text: Set any string as the animated text. Configurable Durations: Specify the duration for both the writing and deleting animations. Custom Text Styles: Apply any TextStyle to the animated text.

Usage #

Import the widget:

import 'path_to/BasicAnimatedText.dart';

Implement the widget in your Flutter app:

BasicAnimatedText(
  text: "Your Animated Text Here",
  writeDuration: Duration(milliseconds: 150),
  deleteDuration: Duration(milliseconds: 50),
  textStyle: TextStyle(fontSize: 24, color: Colors.black),
)

Parameters #

text (String, required): The text to animate. writeDuration (Duration, optional): Duration for each character to be written. Default is 150 milliseconds. deleteDuration (Duration, optional): Duration for each character to be deleted. Default is 50 milliseconds. textStyle (TextStyle, optional): Style for the text. Default is TextStyle(fontSize: 24).

Example #

Example GIF
BasicAnimatedText(
  text: "Hello, Flutter!",
  writeDuration: Duration(milliseconds: 200),
  deleteDuration: Duration(milliseconds: 100),
  textStyle: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
)
0
likes
130
pub points
0%
popularity

Publisher

verified publisheraltaysakarya.dev

BasicAnimatedText is a custom Flutter widget designed to create an animated text effect where the text appears and then deletes itself character by character.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on basic_animated_text