BUG 代码块:
let button = wx.createUserInfoButton({
type: 'text',
text: '按钮',
style: {
left: wx.getSystemInfoSync().screenWidth / 2 - 60,
bottom: wx.getSystemInfoSync().screenHeight / 2 - 60,
backgroundColor: '#fb94a9',
color: '#ffffff',
textAlign: 'center',
width: 120,
height: 40,
lineHeight: 40,
fontSize: 16,
borderRadius: 8
}
});
button.show();
问题说明:
这段代码基础库2.9.5以下版本能够显示出按钮,基础库2.10.0以上不显示
官方的小游戏示例没问题,你能否制作并提供一下代码片段?