-1

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

enter image description here

civani mahida
  • 314
  • 3
  • 8

1 Answers1

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