How can I disable/change the fading animation when using Navigation component together with BottomNavigationView?
My code to set them up together (in the activity) is as follows:
private fun setupBottomNavMenu() {
val navController = Navigation.findNavController(this, R.id.main_navigation_fragment)
val bottomNavigation = findViewById<BottomNavigationView>(R.id.bottom_navigation)
NavigationUI.setupWithNavController(bottomNavigation, navController)
}