Closed swift-kim closed 2 years ago
Currently a boldText flag is being passed to the engine when the High Contrast option is set in the TV settings. A highContrast flag must used instead.
Contributes to https://github.com/flutter-tizen/flutter-tizen/issues/151. Should be rebased upon https://github.com/flutter-tizen/engine/pull/264.
The invertColors feature support will be added after this change.
Code example:
return MaterialApp( theme: ThemeData(colorScheme: const ColorScheme.light()), highContrastTheme: ThemeData(colorScheme: const ColorScheme.highContrastLight()), ... );
Currently a boldText flag is being passed to the engine when the High Contrast option is set in the TV settings. A highContrast flag must used instead.
Contributes to https://github.com/flutter-tizen/flutter-tizen/issues/151. Should be rebased upon https://github.com/flutter-tizen/engine/pull/264.
The invertColors feature support will be added after this change.
Code example: