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,
                ),
              )
            ],
          ),
        ),
      ),
    );
  }
}
11
likes
140
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

This package creates a Typing Text Animation

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, web

More

Packages that depend on typing_text_animation