Created
October 8, 2017 10:48
-
-
Save dmytro-anokhin/bf73975ac9359e12f22d077a26b8edca 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
/// Defines visible view controller when one at a time displayed | |
private enum DisplayFocus { | |
/// When .displayMode set to .one, left view is visible | |
case left | |
/// When .displayMode set to .one, right view is visible | |
case right | |
} | |
private var displayFocus: DisplayFocus = .left |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment