ControlButtonsGroup constructor
- Key? key,
- required VoidCallback onWeatherToggle,
- required bool weatherVisible,
- required VoidCallback onLocationPressed,
- VoidCallback? onSettingsPressed,
- RALINavigationMode currentMode = RALINavigationMode.default_,
- double? weatherIntensity,
- bool? trafficVisible,
//////////// ////////////
Implementation
// II.B - Constructor
///////////////
const ControlButtonsGroup({
super.key,
required this.onWeatherToggle,
required this.weatherVisible,
required this.onLocationPressed,
this.onSettingsPressed,
this.currentMode = RALINavigationMode.default_,
this.isNavigating = false,
this.weatherIntensity,
this.trafficVisible,
});