Skip to content

zeeshanali-k/flutter_typist

Repository files navigation

Flutter Typist

Flutter Text Typing Animation Library for Android, iOS, MacOS, Windows and Web.

Pub.dev Link

Usage

Add Flutter Typist Dependency running below command in your project directory:


dart pub add flutter_typist

Add FlutterTypist widget to start utilizing:

Container(
   color: Colors.white,
   alignment: Alignment.center,
   child: const FlutterTypist(
   text: "Flutter Typist Demo!",
   style: TextStyle(fontSize: 25, color: Colors.black),
   ),
  )
);