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

Gray Top App Bar #222

Closed
kartiksharmakk opened this issue Apr 2, 2024 · 3 comments
Closed

Gray Top App Bar #222

kartiksharmakk opened this issue Apr 2, 2024 · 3 comments
Labels
bug Something isn't working

Comments

@kartiksharmakk
Copy link

kartiksharmakk commented Apr 2, 2024

i can observe a gray top system app bar (whenever i initiate GiphyDialogFragment) and it is the only screen in my app where it happens

Android 13

val settings = GPHSettings()
        settings.imageFormat = ImageFormat.GIF
        settings.renditionType = RenditionType.fixedWidth

        gifDialogFragment = GiphyDialogFragment.newInstance(settings)
@kartiksharmakk kartiksharmakk added the bug Something isn't working label Apr 2, 2024
@kartiksharmakk kartiksharmakk changed the title Gray Gray Top App Bar Apr 2, 2024
@ALexanderLonsky
Copy link
Collaborator

Hey @kartiksharmakk
Apologies for the delayed response.
The simplest solution for now would be to override the style to make the status bar transparent.

<style name="GiphyWaterfallDialogStyle" parent="GiphyDialogStyle">
        <item name="android:backgroundDimEnabled">true</item>
        <item name="android:backgroundDimAmount">0.2</item>

        <item name="android:statusBarColor">@color/gph_transparent</item>
</style>

@kartiksharmakk
Copy link
Author

@ALexanderLonsky

Thank you very much. This resolves the issue 👍.

@ALexanderLonsky
Copy link
Collaborator

fixed in v2.3.14

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants