Giphy / giphy-react-native-sdk

GIPHY React Native SDK
https://developers.giphy.com
Apache License 2.0
68 stars 25 forks source link

[GiphyDialog] Default showCheckeredBackground not working #87

Closed Cebri63 closed 1 year ago

Cebri63 commented 1 year ago

🐛 Bug Report

ONLY ON ANDROID

In the documentation, showCheckeredBackground for GiphyDialog is supposed to be false by default. But on my screen, I see the checkered background on all the stickers. I've manually set this option to false like that :

GiphyDialog.configure({
  showCheckeredBackground: false,
});

but it doesn't change anything.

Your Environment

pshoniuk commented 1 year ago

Hi @Cebri63, Thanks for reaching out.

GiphyDialog.configure({ showCheckeredBackground: false }); only disables a checkered background for the GiphyDialog. Have you tried to specify the showCheckeredBackground property for the GiphyMediaView component?

Cebri63 commented 1 year ago

Hi @pshoniuk! Absolutely, it works better that way! 🙈
Thanks a lot