-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppNavigation.tsx
30 lines (27 loc) · 924 Bytes
/
AppNavigation.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import React from "react";
import { View, Button } from "react-native";
import { useToast } from "./src/context/toast/ToastContext";
const AppNavigation = () => {
const { showToast } = useToast();
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Button
title="Show Success Toast"
onPress={() => showToast({message: 'Success message', type: 'success'})}
/>
<Button
title="Show Error Toast"
onPress={() => showToast({message: 'Error message', type: 'error'})}
/>
<Button
title="Show Info Toast"
onPress={() => showToast({message: 'Error message', type: 'info'})}
/>
<Button
title="Show Warning Toast"
onPress={() => showToast({message: 'Error message', type: 'warning'})}
/>
</View>
)
}
export default AppNavigation;