flutter_radar_view 0.0.8 copy "flutter_radar_view: ^0.0.8" to clipboard
flutter_radar_view: ^0.0.8 copied to clipboard

A customizable and interactive radar view widget for Flutter that allows you to display and interact with multiple spots on a radar.

Simple Radar View for Flutter''

Screenshot

Getting started #

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage #

List<Spot> spots = [
    Spot(distance: 100, icon: Icons.add_box_sharp),
    Spot(distance: 150, icon: Icons.comment_bank),
    Spot(distance: 200),
    Spot(distance: 250),
    Spot(distance: 300),
    Spot(distance: 350),
  ];

@override
  Widget build(BuildContext context) {
    return Scaffold(
      body:
        RadarView(
          spots: spots,
        ),
      ),
    }
5
likes
140
pub points
31%
popularity

Publisher

verified publisheraragoni.dev

A customizable and interactive radar view widget for Flutter that allows you to display and interact with multiple spots on a radar.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, touchable

More

Packages that depend on flutter_radar_view