Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Request for new functionality
View staffing
Description
It would be nice if we could make KeyTrigger call methods on a different view than the one used for collisions.
The way I can see this working is with another attribute on KeyTrigger:
app:motionTarget would continue to be the view used to check for collisions
app:actionTarget would define which view to call onPositiveCross, etc on. This would default to app:motionTarget if not set
<KeyTrigger
app:motionTarget="..."
app:actionTarget="..."
app:onNegativeCross="show"
app:onPositiveCross="hide" />