text_typewriter 1.0.1 copy "text_typewriter: ^1.0.1" to clipboard
text_typewriter: ^1.0.1 copied to clipboard

A Flutter module to enable writing in typewriter format with features like looping, duration setting and text styling.

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: '_', ),

4
likes
125
points
30
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter module to enable writing in typewriter format with features like looping, duration setting and text styling.

Homepage

License

unknown (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on text_typewriter