Last active
January 24, 2020 13:32
-
-
Save EmmanuelGuther/bc6cfeb45667f7797f843cef60364907 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
| companion object { | |
| var callbackLoadMore: ((Int) -> Unit)? = null | |
| var callbackLikeClick: ((Promotion) -> Unit)? = null | |
| fun forPage(callbackLoadMore: (Int) -> Unit, callbackLikeClick: (Promotion) -> Unit): ShowcasePageOneFragment { | |
| this.callbackLoadMore = callbackLoadMore | |
| this.callbackLikeClick = callbackLikeClick | |
| return ShowcasePageOneFragment() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment