Reputation: 2071
I was wondering if you can actually apply state transitions to a custom component in Flex mobile projects.
I'd like to have some kind of Flipview
transition like the one available for Views
but for a custom component. Is that at all possible?
Currently I simply switch states using currentState = "stateName"
. Naturally that doesn't really look rich.
If the application performance allows it, a nice transition would be great.
Any ideas?
Upvotes: 1
Views: 308
Reputation: 4350
state transitions in mobile projects should be the same as the desktop ones. I believe the only difference is that the mobile versions actually have orientation states (if you decide to name them - similar to how item renderers work).
Upvotes: 1