désactivation autocalibration, et correction de distortion dans l'écran de calibration

This commit is contained in:
2026-02-15 22:07:35 +01:00
parent 723900b860
commit de677aad7e
3 changed files with 146 additions and 65 deletions

View File

@@ -275,7 +275,7 @@ class _AnalysisScreenContentState extends State<_AnalysisScreenContent> {
child: Column(
children: [
// Auto-calibrate button
SizedBox(
/*SizedBox(
width: double.infinity,
child: ElevatedButton.icon(
onPressed: () async {
@@ -334,7 +334,7 @@ class _AnalysisScreenContentState extends State<_AnalysisScreenContent> {
foregroundColor: Colors.white,
),
),
),
),*/
const SizedBox(height: 16),
// Ring count slider
Row(
@@ -438,7 +438,7 @@ class _AnalysisScreenContentState extends State<_AnalysisScreenContent> {
),
const Divider(color: Colors.white24, height: 16),
// Distortion correction row
Row(
/*Row(
children: [
const Icon(
Icons.lens_blur,
@@ -503,19 +503,19 @@ class _AnalysisScreenContentState extends State<_AnalysisScreenContent> {
),
),
const SizedBox(width: 8),
Switch(
/*Switch(
value: provider.distortionCorrectionEnabled,
onChanged: (value) => provider
.setDistortionCorrectionEnabled(value),
activeTrackColor: AppTheme.primaryColor
.withValues(alpha: 0.5),
activeThumbColor: AppTheme.primaryColor,
),
),*/
],
),
],
],
),
),*/
],
),
),