I have a switch which toggle the app theme but there is some errors on the code
Switch(value: AppStyleMode.isSwitched, onChanged: (value)=> AppStyleMode.switchMode())
My Theme file
 import 'package:flutter/material.dart';
    class AppStyleMode extends ChangeNotifier {
      bool isSwitched = true; 
      Color primaryBG = Colors.white;
      Color appBarBG = Colors.yellow;
      
    
      switchMode() {
        if (isSwitched == true) {
          primaryBG = Colors.black];
          appBarBG = Colors.grey[400];
         
          isSwitched = false;
        } else {
          //if it is dark mode currently switch to light
          primaryBG = Colors.white;
          appBarBG = Colors.yellow;
      
          isSwitched = true;
        }
    
        notifyListeners();
      }
    }
Errors on Switch :

 
                        
If you are not using any particular state management packages,
First, you would have to create an instance of your
AppStyleModeclass, so that you can use values from it and also listen to it's changes.Assuming you have a
StatefulWidget,first define your
AppStyleModein it'sState,Then in your
initState, initialise it and add a listener to it.Then you can use it in your
buildby using your variableappStyleModelike this,I would rather suggest you look into a State management solution like provider or Getx. But it is not compulsory.