Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

After pressing the back on Android, the bottom bar is obscured #279

Open
abdulahad1991 opened this issue Feb 12, 2024 · 4 comments
Open

Comments

@abdulahad1991
Copy link

image

@akshay2211
Copy link
Owner

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??

@abdulahad1991
Copy link
Author

@akshay2211 hope you are doing great.

I could not recall the issue exactly my apologies :)

@halilibrahimaksoy
Copy link

This issue is steel occurred
BiP image 2024-11-27 pmt 13 58 25
BiP image 2024-11-27 pmt 13 58 33

@halilibrahimaksoy
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants