10 | The world is your oyster.
11 |
12 | If you get lost, the docs will be your guide.
13 |
14 |
15 |
16 |
17 |
Url {{item.url}}
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/demo/src/pages/home/home.scss:
--------------------------------------------------------------------------------
1 | page-home {
2 |
3 | }
4 |
5 | .image-list{
6 | display: grid;
7 | grid-template-columns: repeat(auto-fit,minxmax(100xp,1fr));
8 | grid-template-rows: repeat(auto-fit,minxmax(100xp,1fr));
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/demo/src/pages/home/home.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 | import { NavController } from 'ionic-angular';
3 | const data = require('./data.json');
4 | @Component({
5 | selector: 'page-home',
6 | templateUrl: 'home.html'
7 | })
8 | export class HomePage {
9 |
10 | constructor(public navCtrl: NavController) {}
11 |
12 | get items():Array