1*2a3194f5S猫头猫import ToastMessage from 'react-native-toast-message'; 2*2a3194f5S猫头猫 3*2a3194f5S猫头猫const Toast = { 4*2a3194f5S猫头猫 success(msg: string) { 5*2a3194f5S猫头猫 ToastMessage.show({ 6*2a3194f5S猫头猫 type: 'success', 7*2a3194f5S猫头猫 text1: msg, 8*2a3194f5S猫头猫 }); 9*2a3194f5S猫头猫 }, 10*2a3194f5S猫头猫 warn(msg: string) { 11*2a3194f5S猫头猫 ToastMessage.show({ 12*2a3194f5S猫头猫 type: 'warn', 13*2a3194f5S猫头猫 text1: msg, 14*2a3194f5S猫头猫 }); 15*2a3194f5S猫头猫 }, 16*2a3194f5S猫头猫}; 17*2a3194f5S猫头猫 18*2a3194f5S猫头猫export default Toast; 19