Refactor: Optimisation du range du slider de Taille pour améliorer la précision de calibration
This commit is contained in:
@@ -198,9 +198,9 @@ class TargetCalibrationState extends State<TargetCalibration> {
|
||||
const Icon(Icons.zoom_out, color: Colors.white, size: 16),
|
||||
Expanded(
|
||||
child: Slider(
|
||||
value: _radius.clamp(0.05, 3.0),
|
||||
min: 0.05,
|
||||
max: 3.0,
|
||||
value: _radius.clamp(0.3, 1.2),
|
||||
min: 0.3,
|
||||
max: 1.2,
|
||||
activeColor: AppTheme.primaryColor,
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
|
||||
Reference in New Issue
Block a user