How can I change the status bar color to white but also change the text color of status bar, otherwise both will be white and hence text wont be visible
You can use. You should put it in your main() method.
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
statusBarColor: Colors.white
));
Then set your AppBar brightness to
AppBar(
brightness: Brightness.light,
),