After pressing the back on Android, the bottom bar is obscured
Hello @abdulahad1991 , can you provide more info, such as replication steps and how you have implemented Pix image picker. Also the image you have provided is not available any more, can you re upload it??
@akshay2211 hope you are doing great.
I could not recall the issue exactly my apologies :)
This issue is steel occurred
private fun showCameraPicker(pixFragment: PixFragment) {
childFragmentManager.beginTransaction()
.replace(
R.id.fragmentContainer,
pixFragment,
Constants.PixFragmentTag
)
.addToBackStack(Constants.PixFragmentTag)
.commit()
}
private fun dismissCameraPicker() {
val fragment = childFragmentManager.findFragmentByTag(Constants.PixFragmentTag)
if (fragment != null) {
childFragmentManager.beginTransaction()
.remove(fragment)
.commit()
}
}
This is how I implement adding and removing
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.