AndrewJBateman / ionic-angular-material

:clipboard: Ionic app to use the angular material library. Another great tutorial from Simon Grimm at the Ionic Academy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚑ Ionic Angular Material

GitHub repo size GitHub pull requests GitHub Repo stars GitHub last commit

πŸ“„ Table of contents

πŸ“š General info

  • Angular Material is the implementation of Material Design for Angular. It offers a wide range of components and patterns for navigation, forms, buttons, layouts etc.

πŸ“· Screenshots

image

πŸ“Ά Technologies

πŸ’Ύ Setup

  • Run npm i to install dependencies
  • To start the server on localhost://8100 type: ionic serve

πŸ’» Code Examples

  • extract from home.page.html of the material table that displays the user first name using data-interpolation.
  <ng-container matColumnDef="first_name">
    <th mat-header-cell *matHeaderCellDef> First Name </th>
    <td mat-cell *matCellDef="let user"> {{user.first_name}} </td>
  </ng-container>

πŸ†’ Features

  • User list can be extended. Lots of additional material components can be added.

πŸ“‹ Status & To-do list

  • Status: Working.
  • To-do: Nothing

πŸ‘ Inspiration

πŸ“ License

  • This project is licensed under the terms of the MIT license.

βœ‰οΈ Contact

About

:clipboard: Ionic app to use the angular material library. Another great tutorial from Simon Grimm at the Ionic Academy

License:MIT License


Languages

Language:TypeScript 52.4%Language:SCSS 21.2%Language:HTML 20.3%Language:JavaScript 6.1%