typing_text_animation

Creator: coderz1093

Last updated:

0 purchases

typing_text_animation Image
typing_text_animation Images
Add to Cart

Description:

typing text animation

Typing Text Animation #

Features #
This widget displays text with a typewriter-like animation effect, where characters appear one by one.
Getting started #
TODO: List prerequisites and provide or point to information on how to
start using the package.
Usage #

Import the package

import 'package:typing_text/typing_text.dart';
copied to clipboard

Use the TypingTextAnimation widget in your build method:

TypingTextAnimation(
texts: ["Hello", "World!"],
textStyle: TextStyle(color: Colors.black, fontSize: 16.0),
showCursor: true, // Optional, defaults to true
),
copied to clipboard
Additional information #
Properties:
texts: A list of strings to be displayed sequentially with animation.
textStyle: The style applied to the displayed text.
showCursor: A boolean to control whether to show an underscore cursor at the end of the typing animation (defaults to true).
Code Snippet #
Here's a basic example of using the widget:
Scaffold(
body: Center(
child: Row(
children: [
Text("I am a ", style: TextStyle(fontSize: 20, fontWeight: FontWeight.w300)),
TypingTextAnimation(
texts: ["Flutter Developer", "Dart Lover"],
textStyle: TextStyle(fontSize: 20.0,fontWeight: FontWeight.bold))
]),
),
),
copied to clipboard
This code displays the two provided strings with a typing animation effect and a cursor at the end.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.