Native Base Toast在实时模式下不起作用

时间:2019-04-19 13:54:35

标签: react-native react-redux toast

我们在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.');

0 个答案:

没有答案