React native如何设置相对内部绝对值?

时间:2019-06-25 21:00:03

标签: react-native

dot.edge(from_node, str(2*int(from_node) + 2))
dot.edge(from_node, str(2*int(from_node) + 1))

enter image description here

棕色框应该在黄色内。但这是黄色的盒子。如何解决这个问题?这是反应本机问题

3 个答案:

答案 0 :(得分:0)

您的棕色区域的坐标设置在左上方。 top:0,left:0

您说过要在中间发送。

  brown: {
        backgroundColor:'brown',
        position:'absolute',
        top:"50%",
        left:"50%",
        marginLeft: -50 // your width(100) / 2
        marginRight: -50 // your height(100) /2
        width:100,
        height:100,
    },

答案 1 :(得分:0)

my_table_000000_partition

答案 2 :(得分:0)

您可以这样更新样式:

    bar: {
        flex:1,
        backgroundColor:'yellow',
        position:'relative',
        justifyContent: 'center',
        alignItems:'center'
    },
    brown: {
        backgroundColor:'brown',
        position:'absolute',
        width:100,
        height:100,
    },