Skip to content

Instantly share code, notes, and snippets.

@mym0404
Created December 4, 2019 19:07
Show Gist options
  • Select an option

  • Save mym0404/7a8f3a3f57da15db6554687acc83e67a to your computer and use it in GitHub Desktop.

Select an option

Save mym0404/7a8f3a3f57da15db6554687acc83e67a to your computer and use it in GitHub Desktop.
class MainFragment @Inject constructor(private val myDependency: Dependency) : Fragment() {
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View = inflater.inflate(R.layout.fragment_main, container, false)
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
dep_tv.text = myDependency.sayMyName()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment