text_typewriter
This widget allows to animate the typing of text in typewriter animation. It has many options such as erasing the text in typewriter format after typing it, looping, and text styling.
Getting Started
to get started 1-dart pub add text_typewriter 2-import 'package:text_typewriter/text_typewriter.dart'; 3- use "Typewriter" command for accessing it by passing a list if you want to iterate through the Texts inside the list ,or single String in list if you want one text to be typed again and again.
Examples
Typewriter(
['hi', 'hello'],
textstyle: TextStyle(color: Colors.amber, fontSize: 20),
),
/////////////////////////////////////////////////////////////////////
Typewriter(
'I am a coder', 'I am a developer', 'i am flutter enthusiast' ,
textstyle: TextStyle(color: Colors.amber, fontSize: 20),
),
/////////////////////////////////////////////////////////////////////
Typewriter(
'hi', 'hello',
textstyle: TextStyle(color: Colors.amber, fontSize: 20),
loop: true,
erase: true,
tailingtext: '_',
),