An open API service indexing awesome lists of open source software.

https://github.com/nikos/material-ui-bottomnav

Bottom navigation for material-ui react project.
https://github.com/nikos/material-ui-bottomnav

Last synced: 3 months ago
JSON representation

Bottom navigation for material-ui react project.

Awesome Lists containing this project

README

        

# [Material-UI](http://callemall.github.io/material-ui/) - Example Project

This is an example project that uses [Material-UI](http://callemall.github.io/material-ui/)
and adds a new component which allows to display a navigation on the bottom.
This project is based on the `browserify-gulp-example` from material-ui.

## Installation
After cloning the repository, install dependencies:
```
cd
npm install
```

Now you can run your local server:
```
npm start
```

### Description of [Gulp](https://github.com/gulpjs/gulp) Plugins

#### [browserify](https://github.com/substack/node-browserify)
Browsers do not allow us to use the require method from Node.js. With browserify, we can
implement dependency management on the browser. It also will bundle the code into one file
in an efficient way to not repeat dependiencies that are used more than once.

#### [browserSync](http://www.browsersync.io/)
When developing and testing the website, browserSync is a powerful tool that will rebuild
and refresh the webpage so you can see the changes you make as you are working.

#### markup
Copies all of the files from `/src/www` to the `build` folder.

#### [gulp_starter](https://github.com/greypants/gulp-starter)
A useful repository that explains how many of gulp's features work and contains an example
project to get familiar with it. We use this example to construct our own project.