All Projects → angular → Material Start

angular / Material Start

Licence: mit
Starter Repository for AngularJS Material

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to Material Start

Material
Material design for AngularJS
Stars: ✭ 16,744 (+649.51%)
Mutual labels:  material-design, angularjs, angularjs-material
Laravel Angular Cms
CMS built on Laravel, AngularJS and Material Design
Stars: ✭ 272 (-87.82%)
Mutual labels:  material-design, angularjs
Translatr
💬 Translate to multiple languages at once
Stars: ✭ 145 (-93.51%)
Mutual labels:  material-design, angularjs
Elegantdialog
A beautiful, customizable and interactive dialog for Android written in Kotlin/Java 😍
Stars: ✭ 189 (-91.54%)
Mutual labels:  material-design
Materialstepperview
Steppers - Material Design Components for Android
Stars: ✭ 2,187 (-2.1%)
Mutual labels:  material-design
React Md
React material design - An accessible React component library built from the Material Design guidelines in Sass
Stars: ✭ 2,284 (+2.24%)
Mutual labels:  material-design
Springboot Dubbox Web
springboot-dubbox后台管理
Stars: ✭ 198 (-91.14%)
Mutual labels:  angularjs
Lightdm Webkit Material
[PROJECT ABANDONED] A material design LightDM Webkit greeter theme
Stars: ✭ 187 (-91.63%)
Mutual labels:  material-design
Tm Crm erp
DEPRECATED
Stars: ✭ 196 (-91.23%)
Mutual labels:  angularjs
Vue Cool Select
Select with autocomplete, slots, bootstrap and material design themes.
Stars: ✭ 195 (-91.27%)
Mutual labels:  material-design
Materialfabspeeddial
Android UI library of FAB speed dial
Stars: ✭ 193 (-91.36%)
Mutual labels:  material-design
Wanandroid flutter
Flutter完整项目,玩Android-Flutter版客户端。
Stars: ✭ 190 (-91.5%)
Mutual labels:  material-design
Materialskin
Theming .NET WinForms, C# or VB.Net, to Google's Material Design Principles.
Stars: ✭ 2,358 (+5.55%)
Mutual labels:  material-design
Wanna
💡✔ Wanna is an implementation of a 21st-century to-do list app.
Stars: ✭ 189 (-91.54%)
Mutual labels:  material-design
Iconshowcase Dashboard
A full-of-features, easy-to-customize, free and open source, Material Design dashboard for icon packs.
Stars: ✭ 197 (-91.18%)
Mutual labels:  material-design
Beamermaterialdesign
Theme for Beamer inspired by Google's Material Design
Stars: ✭ 186 (-91.67%)
Mutual labels:  material-design
Materialcalendar
A Material design calendar inspired by the CalendarView of School Diary.
Stars: ✭ 196 (-91.23%)
Mutual labels:  material-design
Covalent
Teradata UI Platform built on Angular Material
Stars: ✭ 2,230 (-0.18%)
Mutual labels:  material-design
Vantage Ui Template
Template for UI applications in Vantage
Stars: ✭ 193 (-91.36%)
Mutual labels:  material-design
React Md Spinner
Material Design spinner components for React.js.
Stars: ✭ 195 (-91.27%)
Mutual labels:  material-design

AngularJS Material-Start (ES6)

Gitter

This branch contains the final/complete version (i.e. step-10-finished) of the Material Start ES6 Tutorial branch in this repository.

You can see the Live Demo here.

There are many additional branches in this repository that you may find useful:

  • master (this branch) - A copy of the es6 branch outlined below with additional notes about the available branches.
  • es5-tutorial - Step-by-step instructions that clearly demonstrate how the Starter application can be created in minutes using ES5.
  • es5 - The final ES5 version which you complete in the last step of the tutorials above.
  • es6-tutorial - Step-by-step instructions that clearly demonstrate how the Starter application can be created in minutes using ES6.
  • es6 - The final ES6 version which you complete in the last step of the tutorials above.
  • typescript - The final Starter Application built using Typescript.

Note: We do not currently offer a typescript-tutorial branch as the steps are fairly similar to the existing es6-tutorial branch.

Purpose

This project uses the latest master branch of AngularJS Material to build the application outlined below.

material-starter-ux2

Above is a snapshot of the Starter-App with a Master-Detail layout: showing a list of users (left) and a user detail view (right).

Also shown is the user experience that will be displayed for smaller device sizes. The responsive layout reveals the menu button that can be used to hide the user list. And the share button can be used to show the Share bottom sheet view.

This Starter app demonstrates how:

  • AngularJS Material layout and flex options can easily configure HTML containers
  • AngularJS Material components <md-toolbar>, <md-sidenav>, and <md-icon> can quickly provide a base application structure
  • Custom controllers can be used and show <md-bottomsheet> with HTML templates
  • Custom controller can easily, and programmatically open/close the SideNav component
  • Responsive breakpoints and $mdMedia are used
  • Theming can be altered/configured using $mdThemingProvider

This sample application is purposed as both a learning tool and a skeleton application for a typical AngularJS Material web app, comprised of a side navigation area and a content area. You can use it to quickly bootstrap your angular webapp projects and dev environment for these projects.


"How to build an App"

Here are some generalized steps that may be used to conceptualize the application implementation process:

  1. Plan your layout and the components you want to use

  2. Use hard-coded HTML and mock content to make sure the components appear as desired

  3. Wire components to your application logic

    Use the seamless integration possible with AngularJS directives and controllers.
    This integration assumes that you have unit tested your application logic.

  4. Add Responsive breakpoints

  5. Add Theming support

  6. Confirm ARIA compliance

  7. Write End-to-end (e2e) Tests

    It is important to validate your application logic with AngularJS Material UI components.

Wireframe

The illustration below shows how we planned the layout and identified the primary components that will be used in the Starter app:


Note: The container #2 (above) is a simple <div> container and not an AngularJS Material component.


Getting Started

This project uses jspm.io, a package manager for SystemJS which is built on top of the dynamic ES6 module loader. This allows developers to load any module format (ES6, CommonJS, AMD, and globals).

Prerequisites

This project assumes that you have NodeJS and any relevant development tools (like XCode) already installed.

Getting Started

Clone this repository and execute the following commands in a terminal:

  • git checkout master
  • npm install
  • npm run serve

Note: Open the dev console to see any warnings and browse the elements.

Layout

You will notice a few files/directories within this project:

  1. app/src - This is where all of your application files are stored.
  2. app/assets - This folder contains some tutorial-provided images and icons which are used by the application.
  3. index.html - The entry point to your application. This uses System.js to load the app/src/boot/boot.js bootstrap file which in turn loads the app/src/app.js file that imports all of your dependencies and declares them as AngularJS modules, and configures the icons and theming for the application.

Troubleshooting

If you have issues getting the application to run or work as expected:

  1. Make sure you have installed JSPM and run the jspm update command.
  2. Reach out on our Forum to see if any other developers have had the same issue.
  3. This project is based against the master branch of AngularJS Material, so it is always showing the latest and greatest. You may want to update the package.json to use Version 1.1.0 or another stable release to make sure it isn't because of something we changed recently.
  4. Search for the issue here on GitHub.
  5. If you don't see an existing issue, please open a new one with the relevant information and the details of the problem you are facing.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].