Open
Description
I developed the accessibility for flutter-tizen, refer to flutter-tizen/engine#254
There is a box displayed for the widget which is reading.
On android/ios, this box is provied by platform accessibility, the flutter just send the accessibility event to platform, then the box is displayed and widget information is reading.
Tizen platform doesn't provide this box, for example, when screen reader is reading efl widget, screen reader send event to notify efl widget, then efl widget show the box. So when the widget of flutter-tizen is reading, the widget should provide a box.
To display the box, I think there are two ways.
- Modify the flutter engine, implement the box view for the widget.
- Make the screen reader to provide the box, but this way need to modify efl and chromium-efl.