- App created using the Ionic framework to use mat select to select from a list of options, mat paginator to navigate pages and Material Stepper to divide content into logical steps.
- Note: to open web links in a new window use: ctrl+click on link
- 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.
- Run
npm i
to install dependencies - Run
ng lint
to lint files. All files pass linting - To start the server on localhost://8100 type:
ionic serve
- 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>
- User list can be extended. Lots of additional material components can be added.
- Status: Working.
- To-do: Nothing
- Project inspired by Simon Grimm´s Youtube video: ionic angular material
- This project is licensed under the terms of the MIT license.
- Repo created by ABateman, email: [email protected]