├── example
├── app
│ ├── pages
│ │ ├── page1
│ │ │ ├── page1.scss
│ │ │ ├── page1.ts
│ │ │ └── page1.html
│ │ ├── page2
│ │ │ ├── page2.scss
│ │ │ ├── page2.html
│ │ │ └── page2.ts
│ │ ├── page3
│ │ │ ├── page3.scss
│ │ │ ├── page3.html
│ │ │ └── page3.ts
│ │ └── tabs
│ │ │ ├── tabs.html
│ │ │ └── tabs.ts
│ ├── theme
│ │ ├── app.core.scss
│ │ ├── app.ios.scss
│ │ ├── app.wp.scss
│ │ ├── app.md.scss
│ │ └── app.variables.scss
│ ├── widgets
│ │ └── text-img
│ │ │ ├── text-img.scss
│ │ │ ├── text-img.ts
│ │ │ └── color-generator.ts
│ └── app.ts
├── typings
│ ├── main.d.ts
│ ├── browser.d.ts
│ ├── browser
│ │ └── ambient
│ │ │ └── es6-shim
│ │ │ └── es6-shim.d.ts
│ └── main
│ │ └── ambient
│ │ └── es6-shim
│ │ └── es6-shim.d.ts
├── ionic.config.json
├── resources
│ ├── icon.png
│ ├── splash.png
│ ├── ios
│ │ ├── icon
│ │ │ ├── icon.png
│ │ │ ├── icon-40.png
│ │ │ ├── icon-50.png
│ │ │ ├── icon-60.png
│ │ │ ├── icon-72.png
│ │ │ ├── icon-76.png
│ │ │ ├── icon@2x.png
│ │ │ ├── icon-40@2x.png
│ │ │ ├── icon-50@2x.png
│ │ │ ├── icon-60@2x.png
│ │ │ ├── icon-60@3x.png
│ │ │ ├── icon-72@2x.png
│ │ │ ├── icon-76@2x.png
│ │ │ ├── icon-small.png
│ │ │ ├── icon-small@2x.png
│ │ │ └── icon-small@3x.png
│ │ └── splash
│ │ │ ├── Default-667h.png
│ │ │ ├── Default-736h.png
│ │ │ ├── Default~iphone.png
│ │ │ ├── Default@2x~iphone.png
│ │ │ ├── Default-568h@2x~iphone.png
│ │ │ ├── Default-Landscape-736h.png
│ │ │ ├── Default-Landscape~ipad.png
│ │ │ ├── Default-Portrait~ipad.png
│ │ │ ├── Default-Portrait@2x~ipad.png
│ │ │ └── Default-Landscape@2x~ipad.png
│ └── android
│ │ ├── icon
│ │ ├── drawable-hdpi-icon.png
│ │ ├── drawable-ldpi-icon.png
│ │ ├── drawable-mdpi-icon.png
│ │ ├── drawable-xhdpi-icon.png
│ │ ├── drawable-xxhdpi-icon.png
│ │ └── drawable-xxxhdpi-icon.png
│ │ └── splash
│ │ ├── drawable-land-hdpi-screen.png
│ │ ├── drawable-land-ldpi-screen.png
│ │ ├── drawable-land-mdpi-screen.png
│ │ ├── drawable-port-hdpi-screen.png
│ │ ├── drawable-port-ldpi-screen.png
│ │ ├── drawable-port-mdpi-screen.png
│ │ ├── drawable-land-xhdpi-screen.png
│ │ ├── drawable-land-xxhdpi-screen.png
│ │ ├── drawable-land-xxxhdpi-screen.png
│ │ ├── drawable-port-xhdpi-screen.png
│ │ ├── drawable-port-xxhdpi-screen.png
│ │ └── drawable-port-xxxhdpi-screen.png
├── typings.json
├── tsconfig.json
├── ionic.config.js
├── www
│ └── index.html
├── package.json
├── config.xml
├── gulpfile.js
└── hooks
│ ├── after_prepare
│ └── 010_add_platform_class.js
│ └── README.md
├── screenshot.PNG
├── README.md
└── text-img
├── text-img.scss
├── text-img.ts
└── color-generator.ts
/example/app/pages/page1/page1.scss:
--------------------------------------------------------------------------------
1 | .page1 {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/example/app/pages/page2/page2.scss:
--------------------------------------------------------------------------------
1 | .page2 {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/example/app/pages/page3/page3.scss:
--------------------------------------------------------------------------------
1 | .page3 {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/example/typings/main.d.ts:
--------------------------------------------------------------------------------
1 | /// Description here{{name}}
13 |