Shimi Halperin

Results 1 issues of Shimi Halperin

Step 6 Code sample for MainFragment.kt reads: ``` binding.settingsBtn.setOnClickListener { val action = MainFragmentDirections.actionMainFragmentToSettingsFragment() findNavController().navigate(action) } ``` **MainFragmentDirections** is not a thing in this project. Perhaps you mean: `findNavController().navigate(R.id.action_mainFragment_to_settingsFragment) `...