Unverified Commit 0f7f71ef authored by Filipe de Lima Brito's avatar Filipe de Lima Brito Committed by GitHub

Update AboutFragment.kt

parent cbe1b477
......@@ -25,10 +25,6 @@ class AboutFragment : Fragment() {
super.onCreate(savedInstanceState)
AndroidSupportInjection.inject(this)
}
override fun onResume() {
super.onResume()
setupToolbar()
}
override fun onCreateView(
inflater: LayoutInflater,
......@@ -38,12 +34,16 @@ class AboutFragment : Fragment() {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
setupToolbar()
setupViews()
analyticsManager.logScreenView(ScreenViewEvent.About)
}
override fun onResume() {
super.onResume()
setupToolbar()
}
private fun setupViews() {
text_version_name.text = BuildConfig.VERSION_NAME
text_build_number.text = getString(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment