flutter_radar_view 0.0.8 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''
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,
),
),
}