React Native
Build native mobile apps using JavaScript and React
Install #
npm i material-breador
yarn add material-breadSetup #
Dependencies
Next, install and link react-native-vector-icons and react-native-svg .
Usage #
Simply wrap your app or root in the
BreadProvider and start developing. You can learn about customizing on the theme page.import React, { Component } from "react";
import Root from "./Root";
import { BreadProvider } from "material-bread";
export default class App extends Component {
render() {
return (
<BreadProvider>
<Root />
</BreadProvider>
);
}
}Examples #
If you're confused, check out these example repo with Material Bread set up