I am using native-base components.I want to set two or 2 buttons in column view in Footer.can we set height of Footer?.I am new to React Native.This is view
Asked
Active
Viewed 344 times
1 Answers
0
You can add two or more button in the footer like
<Container>
<Footer>
<Left>
<Button transparent>
<Icon name='arrow-back' />
</Button>
</Left>
<Right>
<Button transparent>
<Icon name='menu' />
</Button>
</Right>
</Footer>
</Container>

Rajesh Bhartia
- 690
- 4
- 10