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

A Flutter package for Typing Animation.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter TypeThis Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const Scaffold(
        body: Center(
          child: TypeThis(
            string: 'Hello how are you doing?',
            speed: 100,
            style: TextStyle(fontSize: 20),
          ),
        ),
      ),
    );
  }
}
33
likes
0
pub points
74%
popularity

Publisher

verified publisherthecodexhub.dev

A Flutter package for Typing Animation.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on typethis