Created
January 19, 2020 11:54
-
-
Save creativecreatorormaybenot/01bc60ca75e8ae2a4bb76c705b2c62ae 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 visitChildrenForSemantics(visitor) { | |
| final toBeVisited = <ClockComponent, RenderBox>{}; | |
| ... | |
| for (final component in paintOrder) { | |
| if (toBeVisited.containsKey(component)) visitor(toBeVisited[component]); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment