Custom container with mixins (MoveAnimator)
Hi,
How to create custom containter that has moveAnimator mixin included? Is it possible?
I want to create notification, which is operated using: notificationContainer.show()
The custom container would implement this show() method, which would call startMoveAnimation() to itself, among other stuff.
I can add moveAnimator mixin to container in this in view, but then I need to call the startMoveAnimation etc. routine in every view, instead of just calling show() and letting container deal with the implementation.
How would I create custom container class that has MoveAnimator mixin?
Designer generates it like this:
touchgfx::MoveAnimator< notificationContainer > notificationContainer1;
I cannot figure out how to create such class.
Thanks!
