Last active
December 15, 2017 09:44
-
-
Save sliskiCode/8c793fb0929f535d65420b1ed03851c7 to your computer and use it in GitHub Desktop.
6 magic sugars that can make your Kotlin codebase happier #21
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
| internal interface Navigable { | |
| val onNavigationClick: (() -> Unit)? | |
| } | |
| internal interface Searchable { | |
| var searchText: String | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment