Compass constructor
- required GeoViewController controllerProvider(),
- Key? key,
- bool automaticallyHides = true,
- Alignment alignment = Alignment.topRight,
- EdgeInsets padding = const EdgeInsets.all(10),
- double size = 50,
- Widget iconBuilder(
- BuildContext context,
- double size,
- double angleRadians
Create a Compass widget.
Implementation
const Compass({
required this.controllerProvider,
super.key,
this.automaticallyHides = true,
this.alignment = Alignment.topRight,
this.padding = const EdgeInsets.all(10),
this.size = 50,
this.iconBuilder,
});