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

A Flutter package to implement an animated typing effect for text with customizable styles.

Typing Animation #

Pub Version License: MIT

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,
          ),
        ),
      ),
    );
  }
}
5
likes
150
points
48
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package to implement an animated typing effect for text with customizable styles.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on typing_animation