/flutter_typist

Flutter Text Typing Animation Package

Primary LanguageC++MIT LicenseMIT

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