├── .gitignore ├── LICENSE ├── README.md ├── app ├── index.js ├── screen1.js ├── screen2.js └── view.js ├── docs ├── number.png ├── object-properties.png └── optimization-guidelines.md ├── package.json └── resources ├── index.gui ├── screen1.gui ├── screen2.gui ├── styles.css └── widgets.gui /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.fba -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/app/index.js -------------------------------------------------------------------------------- /app/screen1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/app/screen1.js -------------------------------------------------------------------------------- /app/screen2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/app/screen2.js -------------------------------------------------------------------------------- /app/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/app/view.js -------------------------------------------------------------------------------- /docs/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/docs/number.png -------------------------------------------------------------------------------- /docs/object-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/docs/object-properties.png -------------------------------------------------------------------------------- /docs/optimization-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/docs/optimization-guidelines.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/package.json -------------------------------------------------------------------------------- /resources/index.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/resources/index.gui -------------------------------------------------------------------------------- /resources/screen1.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/resources/screen1.gui -------------------------------------------------------------------------------- /resources/screen2.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/resources/screen2.gui -------------------------------------------------------------------------------- /resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/resources/styles.css -------------------------------------------------------------------------------- /resources/widgets.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaperton/ionic-views/HEAD/resources/widgets.gui --------------------------------------------------------------------------------