Skip to content

Instantly share code, notes, and snippets.

@diousk
Created April 8, 2020 13:14
Show Gist options
  • Save diousk/bbf01cfac4ac98938f2f2237a8bfc304 to your computer and use it in GitHub Desktop.
Save diousk/bbf01cfac4ac98938f2f2237a8bfc304 to your computer and use it in GitHub Desktop.
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
viewLifecycleOwner.lifecycleScope.launchWhenCreated {
// before view laid out
requireView().awaitLayout() // coroutine suspended
// now view is laid out, we can get the size of view
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment