Skip to content

shrutishankar28/native-base-docs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Essential cross-platform UI components for React Native

NativeBase is a free and open source UI component library for React Native to build native mobile apps for iOS and Android platforms.

One of our main goals with NativeBase 2.0 is to make it easy to theme the components with as little changes as possible to the components themselves.

General Syntax of NativeBase Component

import React, { Component } from 'react';
import { Container, Button, Text } from 'native-base';
​
export default class IconExample extends Component {
    render() {
        return (
            <Container>
                <Button>
                    <Text>
                        Button
                    </Text>
                </Button>
            </Container>
        );
    }
}

IOS Android

How to get started?

How to migrate from v0.x to v2.x?

About

Documentation of NativeBase

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 97.0%
  • CSS 1.8%
  • JavaScript 1.2%