Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 946 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 946 Bytes

Type Writer Text

A simple typewriter text animation for flutter. Supports iOS, Android, web, Windows, macOS, and Linux.

Preview

screen-capture-1

Install

How to install is here.

Documentation

The documentation is here.

Usage

  • text, uses Text() widget.
  • duration, uses to define how fast text changes.
  • alignment, Align the text within the occupied size.
  • maintainSize, to maintain occupied size of final text. Default value is true.
  • play, to set whether animation should play or not. Default value is true.
const TypeWriterText(
    text: Text('text'), 
    duration: Duration(milliseconds: 50),
);