typing_text_animation 0.1.0 copy "typing_text_animation: ^0.1.0" to clipboard
typing_text_animation: ^0.1.0 copied to clipboard

This package creates a Typing Text Animation

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:typing_text_animation/typing_text_animation.dart';

void main() {
  runApp(const MainApp());
}

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: 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,
                ),
              )
            ],
          ),
        ),
      ),
    );
  }
}