I'm trying to use the Snackbar component from the React Native Paper library in a project and it's giving me an uncaught error as soon as it reaches its duration limit: "Uncaught Error - Cannot read property 'apply' of undefined".
The call stack lists files 'node_modules\react-native\Libraries\Core\Timers\JSTimers.js' and 'node_modules\react-native\BatchedBridge\MessageQueue.js'.
I'm using version 5.10.6 of the react-native-paper library and 0.72.6 of react-native.
Hope that's enough info. Any help would be greatly appreciated.
EDIT: Here's the code block, as requested. Uses quite a few custom components and the messages are in Portuguese, but hopefully it's understandable code-wise:
// Components
import LostObjects from "../components/LostObjects";
import FoundObjects from "../components/FoundObjects";
import TabBar from "../components/TabBar";
import Home from "../pages/Home";
import PrimaryFAB from "../components/PrimaryFAB";
import { Portal, Snackbar, Text } from "react-native-paper";
// Data
import RegisteredObjectsData from "../mockup/RegisteredObjectsData";
const { lostObjects, foundObjects } = RegisteredObjectsData;
// Styles
import { global } from "../styles/global";
export default function RegisteredObjectsRoutes({ navigation, route }) {
const page =
foundObjects.length || lostObjects.length ? (
<TabBar
screens={[
{ component: LostObjects, title: "Objetos Perdidos" },
{ component: FoundObjects, title: "Objetos Achados" },
]}
hasBadge={[
RegisteredObjectsData.lostObjects.length,
RegisteredObjectsData.foundObjects.length,
]}
/>
) : (
<Home />
);
return (
<>
{page}
<PrimaryFAB
style={global.fabButton}
icon="plus"
label="Novo Registro"
onPress={() => navigation.navigate("ObjectRegister")}
/>
<Portal>
<Snackbar visible={route?.params ? true : false}>
{
RegisteredObjectsData[
route?.params?.foundObject ? "foundObjects" : "lostObjects"
][route?.params?.objectId - 1]?.object + " apagado com sucesso"
}
</Snackbar>
</Portal>
</>
);
}