[bug]RayMiniLottie组件放在Popup组件中,无法显示

小程序开发相关产品技术讨论,包括面板、智能小程序、React Native、Ray跨端框架、Panel SDK、微信小程序、小程序开发工具(IDE)及其他开发技术相关等话题


Post Reply
lzjchina
Posts: 4

  • Tuya MiniApp IDE 版本信息:关于中查看
    • App 应用版本信息: 设置-关于中进行查看~
    • @ray-js/ray, @ray-js/panel-sdk的版本(如使用ray开发)在package.json查看~
    • 移动设备信息:手机型号及系统
    • 相关代码:可复现该问题的代码内容
      <Popup
      show={isVisible}
      overlayStyle={{
      backgroundColor: 'rgba(0, 0, 0, 0.4)',
      }}
      customStyle={{ backgroundColor: 'transparent' }}
      >
      <RayMiniLottie
      source={jsonDataValue}
      width={98}
      height={55}
      style={{
      background: '#eee',
      }}
      onRenderFinished={() => {
      console.log('render finished');
      }}
      />

</Popup>

Code: Select all

- 日志信息:~错误日志或 IDE 运行日志等~

- 问题描述(复现步骤):

- 预期结果:

- 实际结果:

Tags:
crisiron
Posts: 106

Re: [bug]RayMiniLottie组件放在Popup组件中,无法显示

你好,0.0.5 版本已修复,由于 Popup 组件渲染时机问题,具体用法可参考组件使用文档中的注意事项

Post Reply