FragNav
FragNav copied to clipboard
An Android library for managing multiple stacks of fragments
`currentStackIndex = index` see line no 194 & 200 on `FragNavController` class, same assignment written two times, attaching screenshot for your reference @ncapdevi
Hi, Firstly thank you for this awesome library, I am using this library with bottom bar(bottom bar in my activity) but sometimes i need to push/show fragment without bottom bar....
Thanks for the marvelous library, such a great help for managing loads of fragments. It'd be great if there was be an option for passing a fragment manager as the...
This is a strange issue I'm facing. Steps to reproduce: 1. Clearstack for current tab and replace the root fragment using replaceFragment method. 2. Though the above step works but...
hello, i have fragment A, when pushing to B -> called pop function, i saw the imageView lost image, i tried to find same problem in question's list but not...
in the `getRootFragment(index: Int)` method, we can only declare a `DestinationFragment.newInstance("hardcoded value1")` without having to know how to send argument, e.g (from a deeplink): ``` fun iniFragNav() { val fragments...
Can anyone explain, How to use this library without bottom navigation? It will be good if you can add a wiki for use of this library without bottom navigation.
I have FragNavController in my activity. When I call showDialogFragment like `fun BaseFragment.showDialogFragment( bottomFragment: BottomSheetDialogFragment, requestCode: Int = 0 ) { bottomFragment.setTargetFragment(this, requestCode) this.baseActivity().fragNav?.showDialogFragment(bottomFragment) }` app crashed with > fragment...
As title said, I set up Fragnav with this option: `fragNavController.fragmentHideStrategy = FragNavController.DETACH_ON_NAVIGATE_HIDE_ON_SWITCH` Currently, I am on first bottom tab (Home) and try to pop all other stack to root...
Hi!!. When i call activity.recreate() to perform night mode from setting fragment, the fragment who start at first is actually the first and not the setting fragment, but the bottom...