我们在React Native应用程序中使用NativeBase。我们正在尝试显示基于Redux动作中设置的错误的Toast组件,因为它是通过调用API发生的。
它可以在调试模式下完美运行,但不能在Live build中运行。请提出我们该怎么办?
代码:
export const toastr = {
showToast: (message, duration = 2500) => {
Toast.show({
text: message,
duration,
position: 'bottom',
textStyle: { textAlign: 'center' },
buttonText: 'Okay',
});
},
};
然后
toastr.showToast('Verication code is invalid.');