In the following code, white background stays in view for couple seconds after notification disappears. I've seen this in Android but not tested on iOS yet.
Is it a bug or am I missing something?
`import React from "react";
import {View, Platform, PushNotificationIOS, StyleSheet} from "react-native";
import Notification from "react-native-in-app-notification";
In the following code, white background stays in view for couple seconds after notification disappears. I've seen this in Android but not tested on iOS yet.
Is it a bug or am I missing something?
`import React from "react"; import {View, Platform, PushNotificationIOS, StyleSheet} from "react-native"; import Notification from "react-native-in-app-notification";
const defaultIcon = require("../assets/defaultImages/logo_small.png");
export class InAppNotification extends React.Component {
}
const styles = { root: { position: "absolute", top: 0, left: 0, right: 0, height: 200, elevation: 999, zIndex: 999 } };`