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,
          ),
        ),
      ),
    );
  }
}