Skip to content

Instantly share code, notes, and snippets.

@svinouze
Last active November 5, 2020 13:38
Show Gist options
  • Save svinouze/fd1a2bf71f17eaeaed6c9619b03bb08d to your computer and use it in GitHub Desktop.
Save svinouze/fd1a2bf71f17eaeaed6c9619b03bb08d to your computer and use it in GitHub Desktop.
interface FabulousListener {
fun onClick()
}
class FabulousFragment : Fragment() {
companion object {
fun newInstance() = FabulousFragment()
}
var listener: FabulousListener? = null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment