Last active
January 19, 2020 11:51
-
-
Save creativecreatorormaybenot/9e066b7a1c35ff56139a9733859ccc04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @override | |
| void describeSemanticsConfiguration(SemanticsConfiguration config) { | |
| super.describeSemanticsConfiguration(config); | |
| config | |
| ..label = | |
| 'Analog clock showing hour $hour${_use24HourFormat ? ' (and ${hour + 12})' : ''}, ' | |
| 'minute $minute, and second $second' | |
| ..isReadOnly = true | |
| ..textDirection = TextDirection.ltr; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment