Windows
Build Windows desktop applications using React Native.
Install #
npm i material-bread
or
yarn add material-bread
Setup #
React Naitve Windows has a particular set of requirementsand currently only supports up to `0.59.10` React Native. Learn more about setting up React Native Windows with their getting started guide.. Alternatively, you can generate a new project with React Native Windows and Material using the react-native-infinty cli
Init a project
After following the above getting started guide, simply run
react-native run-windows
to set up the remaining configuration.Dependencies
Next, simply install and link react-native-vector-icons and react-native-svg .
Usage #
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 this example repos with Material Bread set up. Alternatively, you can use the react-native-infinty cli to generate a project with Material Bread already setup.