0 purchases
typing animation
Typing Animation #
A Flutter package for creating typing animations.
Features #
Animate text being typed and backspaced.
Customizable text style.
Easy to use.
Getting Started #
To use this package, add typing_animation as a dependency in your pubspec.yaml file.
Usage #
import 'package:flutter/material.dart';
import 'package:typing_animation/typing_animation.dart';
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: TypingAnimation(
text: 'Welcome to the Future of Learning!',
textStyle: TextStyle(
color: Colors.orange,
fontWeight: FontWeight.bold,
),
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.