fix : toast

Deskripsi:
- bisa custom posisi toast alert

No Issues
This commit is contained in:
2025-08-27 11:39:46 +08:00
parent 2651e4bd18
commit c01a1885c2
4 changed files with 6 additions and 8 deletions

View File

@@ -3,9 +3,9 @@ import { View } from "react-native";
import Toast from "react-native-toast-message";
import Text from "./Text";
export default function ToastCustom() {
export default function ToastCustom({ position }: { position?: 'top' | 'bottom' }) {
return (
<Toast autoHide onPress={() => Toast.hide()} visibilityTime={1500} position="bottom" config={{
<Toast autoHide onPress={() => Toast.hide()} visibilityTime={1500} position={position || 'bottom'} config={{
small: ({ text1 }) => (
<View style={[Styles.toastContainer]}>
<Text style={{ fontSize: 12 }}>{text1}</Text>