You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Android 11, the backgroundColor and color is not applied correctly, it is always lightgray (and then the app crashes, as described here: #18)
const toast = new Toasty({ text : text })
.setToastPosition(ToastPosition.BOTTOM)
.setTextColor("#FFFFFF")
.setBackgroundColor("#656565"); //dark
toast.show();
The backgroundcolor should be dark, but it is alyways light. The color should be light, but it is dark.
It's currently not support oob (in previous versions we used the getView() but it returns null) but it was changed in Android 11 check them out here .... in the future we can look at using a custom view to get back those features
Activity
triniwiz commentedon Jan 15, 2021
It's currently not support oob (in previous versions we used the
getView()
but it returns null) but it was changed in Android 11 check them out here .... in the future we can look at using a custom view to get back those featuresfelixkrautschuk commentedon Jan 15, 2021
@triniwiz OK thanks, I did not see your note on your GitHub.io page