Material Bread
v0.2.10
Home
Getting Started
React Native
Web
Electron
MacOS
Windows
NextJs
Expo
Vue Native
Style
Font
Icons
Theme
Components
Appbar
Searchbar
Appbar Bottom
Avatar
Backdrop
Badge
Banner
Bottom Navigation
Bottom Navigation Item
Button
Card
CardActions
CardContent
CardHeader
CardMedia
Checkbox
Chip
DataTable
DataTableCell
DataTableHeader
DataTablePagination
DataTableRow
Dialog
Divider
Drawer
DrawerHeader
DrawerItem
DrawerSection
DrawerBottom
Fab
Speed dial
Icon
IconButton
List
ListExpand
ListItem
ListSection
Menu
MenuItem
Paper
Progress Bar
Progress Circle
Radio Button
Ripple
Select
SheetBottom
SheetSide
Slider
Snackbar
SwipeNav
Switch
Tabs
Tab
Textfield
Searchfield
ToggleButton
ToggleButtonGroup
Tooltip
Typography
Utils
Anchor
Color
Hoverable
Shadow
Storybook
Showcase
Contributing
Library
Docs
About

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.