You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The loading icon after logging in doesnt change from purple. I have accentcolor set to red which is what the documentation says the loading icon uses, but its still purple. I tried looking in the code to see if i can find where the issue is happening but i couldnt find it. any help on maybe locating where the loading icon is created or the color is set?
The text was updated successfully, but these errors were encountered:
i found that you can change it from material app theme but that could also change the color in other parts in your code
example: this will make it blue
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// Define your custom primary and secondary colors
colorScheme: ColorScheme.fromSwatch(
primarySwatch: Colors.blue,
)
The loading icon after logging in doesnt change from purple. I have accentcolor set to red which is what the documentation says the loading icon uses, but its still purple. I tried looking in the code to see if i can find where the issue is happening but i couldnt find it. any help on maybe locating where the loading icon is created or the color is set?
The text was updated successfully, but these errors were encountered: