Flutter state doesn't update
I'm getting some problem with state update: My ImpostazioniLaunchComponentCopy is: import 'package:flutter/material.dart'; import 'package:jeep_controller/core/enums/enums.dart'; import 'package:jeep_controller/features/shared/presentation/widgets/action_buttons/menu_action_button.dart'; import 'package:jeep_controller/features/shared/presentation/widgets/action_buttons/switch_action_button.dart'; import 'package:jeep_controller/core/constants/constants.dart'; import 'package:jeep_controller/features/shared/presentation/pages/commands_page/commands_page.dart'; class ImpostazioniLaunchComponentCopy extends StatefulWidget { const ImpostazioniLaunchComponentCopy({ super.key, }); @override State<ImpostazioniLaunchComponentCopy> createState() => _ImpostazioniLaunchComponentCopyState(); } class _ImpostazioniLaunchComponentCopyState extends…