mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
64 lines
1.1 KiB
TypeScript
64 lines
1.1 KiB
TypeScript
import {Page} from 'ionic/ionic';
|
|
import {forwardRef} from 'angular2/angular2';
|
|
import {AndroidAttribute} from '../helpers';
|
|
|
|
|
|
@Page({
|
|
templateUrl: 'lists/basic-lists.html',
|
|
directives: [forwardRef(() => AndroidAttribute)]
|
|
})
|
|
export class BasicListsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'lists/dividers.html',
|
|
directives: [forwardRef(() => AndroidAttribute)]
|
|
})
|
|
export class BasicDividersPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'lists/inset-lists.html',
|
|
directives: [forwardRef(() => AndroidAttribute)]
|
|
})
|
|
export class BasicInsetListsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'lists/list-headers.html',
|
|
directives: [forwardRef(() => AndroidAttribute)]
|
|
})
|
|
export class ListHeadersPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'lists/icon-lists.html',
|
|
directives: [forwardRef(() => AndroidAttribute)]
|
|
})
|
|
export class IconListsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'lists/avatar-lists.html',
|
|
directives: [forwardRef(() => AndroidAttribute)]
|
|
})
|
|
export class AvatarListsPage {
|
|
constructor() {
|
|
|
|
}
|
|
} |