0 purchases
flutter radar view
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,
),
),
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.