Skip to content

Instantly share code, notes, and snippets.

@piotrmadry
Last active August 18, 2017 08:35
Show Gist options
  • Save piotrmadry/3aca2a051d9fc2eeeaa7bb96adbd1693 to your computer and use it in GitHub Desktop.
Save piotrmadry/3aca2a051d9fc2eeeaa7bb96adbd1693 to your computer and use it in GitHub Desktop.
abstract class BaseFragment : Fragment() {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
ToolbarManager(builder(), view).prepareToolbar()
}
protected abstract fun builder(): FragmentToolbar
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment