import React from "react"; import { StyleSheet, Text, View } from "react-native"; export const Toast = (props: { message: string }) => { return ( {props.message} ); }; const ToastStyle = StyleSheet.create({ container: { position: "absolute", backgroundColor: "rgba(95,95,95,1)", borderWidth: 1, borderColor: "rgba(0,0,0,0.8)", zIndex: 10000, margin: 16, padding: 16, borderRadius: 18, alignSelf: "center", justifyContent: "center", bottom: 16, }, });