debug_hit_points 1.0.0+2 copy "debug_hit_points: ^1.0.0+2" to clipboard
debug_hit_points: ^1.0.0+2 copied to clipboard

Renders a dot matrix on top of your Widget, displaying exactly where hit tests succeed

Ever wondered why your custom slider doesn't register all taps? Or maybe it seems you can tap everywhere, even though your button should be much smaller?
package:debug_hit_points renders a dot matrix on top of your Widget, displaying exactly where hit tests succeed.

Features #

  • Can be wrapped around any Box widget
  • Per default disabled in non-debug builds
  • Point grid resolution, color and point size can be customized
  • Try different HitTestBehavior modes

Getting started #

In your pubspec.yaml add:

dependencies:
  debug_hit_points: ^1.0.0

or run

flutter pub add debug_hit_points

Usage #

Import the package

import 'package:debug_hit_points/debug_hit_points.dart';

And wrap your widget with DebugHitPoints

Scaffold(
  body: DebugHitPoints(
    color: Colors.red,
    resolution: 10,
    child: FlutterLogo(),
  ),
)

Example

Additional information #

If you run into any issues or have some suggestions, please open an issue on GitHub.

1
likes
160
pub points
0%
popularity
screenshot

Publisher

verified publisherbent.party

Renders a dot matrix on top of your Widget, displaying exactly where hit tests succeed

Repository (GitHub)
View/report issues

Topics

#debug #indicator #mesh #dotted #gesture

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on debug_hit_points