跳到内容 跳到主导航 跳到页脚

大屏显示

大屏显示

组件名称: ExDisplay

组件描述: 控制机器人大屏的内容显示组件,仅在豹大屏机器人上有效。

使用示例:

private showContent = (): ReactChild => {
    return (
        <View style={{ width: '100%', height: '100%', backgroundColor: 'black' }}>
            <Image style={{ width: '100%', height: '100%', resizeMode: 'contain' }} source={require('图片路径')}/>
        </View>
    );
};

public render() {
    return (
        <>
            <ExDisplay
                child={this.showContent}
                onDisplayAdded={this.onDisplayAdded}
                onDisplayRemoved={this.onDisplayRemoved}
                show={this.show}
                hide={this.hide}
            />
        </>
    );
}

属性:

  • child:大屏显示View
  • onDisplayAdded:大屏连接回调
  • onDisplayRemoved:大屏断开回调
  • onDisplayChanged:大屏连接状态回调
  • show:显示回调(1.26.0版本引入)
  • hide:隐藏回调(1.26.0版本引入)

注意:以上所有属性的类型均为Function,填写属性的时候不要带'()’

最低版本: 1.3.0

适用平台:

豹小秘mini招财豹豹小递max豹小秘DP豹小秘PLUS

这篇文章是否有帮助?

-1