clackety 1.0.0 copy "clackety: ^1.0.0" to clipboard
clackety: ^1.0.0 copied to clipboard

A typing animation widget for Flutter.

clackety #

A lightweight Flutter package (zero external dependencies) to animate the typing of text. You can provide new typing targets via the controller and clackety will amend the text already written.

Clackety demo animation


Features #

  • Corrects text in realtime when new typing target is provided
  • Easy to use Controller
  • No dependencies
  • Tap to fast-forward
  • onCompelte callback

Getting started #

Install the package:

flutter pub add flutter_local_notifications

Usage: Basic #

As a replacement Text() widget

Clackety.text("Clackety Example")

Usage: Advanced #

With a Clackety Controller.

// Create a the ClacketyController
_clacketyController = ClacketyController(value: '');

// Add the Clackety widget to your ui widget tree
Clackety(
    controller: _clacketyController,
    builder: (context, text) => Text(text)),

// Type new text whenever required!
_clacketyController.type('... Happy clacking!');

Happy clacking!

2
likes
0
points
23
downloads

Publisher

verified publisherrocketware.co.uk

Weekly Downloads

A typing animation widget for Flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on clackety