Skip to content

Latest commit

 

History

History
executable file
·
26 lines (22 loc) · 962 Bytes

File metadata and controls

executable file
·
26 lines (22 loc) · 962 Bytes

regular-textbox-headref

Regular Textbox

To use the regular textbox which is rectangular in shape, include the regular prop with Item.

Preview ios regular-textbox-headref Preview android regular-textbox-headref

Syntax

import React, { Component } from 'react';
import { Container, Header, Content, Input, Item } from 'native-base';
export default class RegularTextboxExample extends Component {
  render() {
    return (
      <Container>
        <Header />
        <Content>
          <Item regular>
            <Input placeholder='Regular Textbox' />
          </Item>
        </Content>
      </Container>
    );
  }
}