Last active
July 26, 2019 19:25
-
-
Save aronbalog/4accfd64faf50018fa8a3358e8a44cd6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// MARK: ChromaColorPickerDelegate | |
extension ColorViewController: ChromaColorPickerDelegate { | |
func colorPickerDidChooseColor(_ colorPicker: ChromaColorPicker, color: UIColor) { | |
// MARK: navigation to destination | |
Navigate.push { $0 | |
.to(Color()) | |
.passData(color) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment