tap_visualizer 0.0.1 copy "tap_visualizer: ^0.0.1" to clipboard
tap_visualizer: ^0.0.1 copied to clipboard

A Widget to visualize the tap

Install #

in terminal run

flutter pub add tap_visualizer

How to use #

TapVisualizer(
  child: YourWidget()
)

Now you can try to tap your widget. You should see a circle appear and growing.

CustomAnimation #

TapVisualizer(
  config: TapVisualizerConfig(
    fading: true,
    curve: Curves.easeInOut,
    duration: Duration(milliseconds:200),
    tapVisualizerEffect: TapVisualizerEffect.enlarge
  ),
  child: YourWidget()
)

CustomPainting #

TapVisualizer(
  config: TapVisualizerConfig(
    painter: YourPainter()
  ),
  child: YourWidget()
)
0
likes
150
points
7
downloads

Publisher

unverified uploader

Weekly Downloads

A Widget to visualize the tap

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on tap_visualizer