Opera Touch browser on Android is applying dark theme styling on websites created with Flutter, for devices with dark theme enabled.
Seems like all Text
widgets are changed, e.g. from black to white, but backgrounds for widgets like Container
are not always changed. This makes the webpage unreadable.
Is there a way to disable this in Flutter, like not let browsers apply their own theme?
I tried to force light theme, but that didn't help.
MaterialApp( title: webpageTitle, themeMode: ThemeMode.light, darkTheme: ThemeData(brightness: Brightness.light) ...)