-
-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setToHorizontalType and setToVerticalType not exist #35
Comments
Do you want these methods to be included in the library? Because these methods don't exist yet and also not documented anywhere. |
They are in the example code of the readme file. Thought it’s avaliable. Otherwise, How do I create a flip view with horizontal flip animation by code instead of XML? |
wajahatkarim3
added a commit
that referenced
this issue
Nov 9, 2018
wajahatkarim3
added a commit
that referenced
this issue
Nov 9, 2018
…e_fix Adds setter/getter for flipType and flipDirection and fixes issue #35
@yehe01 // Sets the animation type to horizontal
easyFlipView.setToHorizontalType();
// Sets the animation type to vertical
easyFlipView.setToVerticalType();
// Returns true if the Flip Type of animation is Horizontal?
easyFlipView.isHorizontalType();
// Returns true if the Flip Type of animation is Vertical?
easyFlipView.isVerticalType();
// Sets the animation direction from left (horizontal) and back (vertical)
easyFlipView.setFlipTypeFromLeft();
// Sets the animation direction from right (horizontal) and front (vertical)
easyFlipView.setFlipTypeFromRight();
// Sets the animation direction from front (vertical) and right (horizontal)
easyFlipView.setFlipTypeFromFront();
// Sets the animation direction from back (vertical) and left (horizontal)
easyFlipView.setFlipTypeFromBack();
// Returns the flip type from direction. For horizontal, it will be either right or left and for vertical, it will be front or back.
easyFlipView.getFlipTypeFrom(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version 2.1.0
Can’t find such documented methods in the code.
The text was updated successfully, but these errors were encountered: