也发布在https://github.com/GeekyAnts/NativeBase/issues/1394
尝试使用Native Base将按钮水平居中。
您知道以下原因为何不起作用吗?
2018-09-06 15:59:00
也尝试过这种方法,也没有用:
SELECT *
FROM (`todolist`)
WHERE `type` = '2' AND
user_id = '1' AND
DATEADD(minute, -5, GETDATE())
答案 0 :(得分:4)
<Button info style = {{padding: '10%', alignSelf: 'center'}}>
<Text>LOGIN</Text>
</Button>
我只需使用(alignSelf:'center')就能将按钮移到中心。
答案 1 :(得分:2)
您可以通过添加Left
和Right
标签来尝试以下操作
<Container style={{flex: 1, alignItems: 'center'}}>
<Content padder>
<Card>
<CardItem>
<Left/>
<Button style={{ margin: 10 }} danger>
<Text> Go to Welcome Tab </Text>
</Button>
<Right/>
</CardItem>
<CardItem>
<Left/>
<Button style={{ margin: 10 }} warning>
<Text> Go to Main Tab </Text>
</Button>
<Right/>
</CardItem>
<CardItem>
<Left/>
<Button style={{ margin: 10 }} success>
<Text> Open Drawer </Text>
</Button>
<Right/>
</CardItem>
</Card>
</Content>
</Container>
答案 2 :(得分:1)
显示按钮的另一种方法是:
<Container style={{ flex: 1, alignItems: 'center' }}>
<Content padder>
<Card style={{ alignItems: 'center' }}>
<Button block style={{ margin: 10 }} danger>
<Text> Go to Welcome Tab </Text>
</Button>
<Button block style={{ margin: 10 }} warning>
<Text> Go to Main Tab </Text>
</Button>
<Button block style={{ margin: 10 }} success>
<Text> Open Drawer </Text>
</Button>
</Card>
</Content>
</Container>