-
-
Save Mercandj/d2e38fd8fc15d802f17744f015307de3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum class AspectRatioReference { | |
/** Child width matches parent width. Child height adjusted to keep the ratio */ | |
PARENT_WIDTH, | |
/** Child height matches parent height. Child height adjusted to keep the ratio */ | |
PARENT_HEIGHT, | |
/** Child fits parent smallest width or height */ | |
MIN_PARENT_WIDTH_PARENT_HEIGHT, | |
/** Child fits parent biggest width or height */ | |
MAX_PARENT_WIDTH_PARENT_HEIGHT | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment