我是React-native的新手,并使用@xinthink的react-native-material-kit; 当我使用它创建按钮时:
const LoginButton = new MKButton.Builder()
.withBackgroundColor(MKColor.Teal)
.withShadowRadius(2)
.withShadowOffset({width: 0, height: 2})
.withShadowOpacity(0.7)
.withShadowColor('black')
.withTextStyle({
color: 'white',
fontWeight: 'bold',
})
.withText('RAISED BUTTON')
.build();
我遇到此错误:
TypeError:未定义不是对象(正在评估'new _reactNativeMaterialKit.MKButton.Builder')
我确定我已经使用过sudo npm i -S react-native-material-kit和react-native-link; 但这似乎并没有解决; 我吓坏了我要面对的BCS近一个星期;