Primary custom color not working in flutter

519 Views Asked by At

I have a problem here I want to change color of textbutton from themedata but its not working. Here is my code :

darkTheme: ThemeData(
        primaryColor:Colors.white,
        textButtonTheme: TextButtonThemeData(
          style: TextButton.styleFrom(primary: Colors.white),
        )
      ),

and my button code :

 TextButton(
            style: TextButton.styleFrom(
             primary: Theme.of(context).primaryColor,
            textStyle: TextStyle(fontSize: 16),),
            onPressed: (){}, child: Text("Hellosir",))
1

There are 1 best solutions below

4
On

I can think of two problems why this is not working.

  • First, you want to access ThemeData defined in darkTheme, but your themeMode is not dark. So in MaterialApp add themeMode: ThemeMode.dark parameter as well.
  • Second, your button where you call Theme.of(context).primaryColor is inside same widget as your definition of Theme, and your context still doesn't have that data. So only context of children of current widget have this data. Solution would be to make a new widget with your button inside it, or wrap your button with Builder widget which have context inside its builder.

Your problem can be first, second or both.