Skip to content

Instantly share code, notes, and snippets.

@creativecreatorormaybenot
Created January 19, 2020 11:54
Show Gist options
  • Select an option

  • Save creativecreatorormaybenot/01bc60ca75e8ae2a4bb76c705b2c62ae to your computer and use it in GitHub Desktop.

Select an option

Save creativecreatorormaybenot/01bc60ca75e8ae2a4bb76c705b2c62ae to your computer and use it in GitHub Desktop.
@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