├── EscPosDemo
├── src
│ ├── app
│ │ ├── app.component.scss
│ │ ├── tab2
│ │ │ ├── tab2.page.scss
│ │ │ ├── tab2-routing.module.ts
│ │ │ ├── tab2.page.html
│ │ │ ├── tab2.module.ts
│ │ │ ├── tab2.page.spec.ts
│ │ │ └── tab2.page.ts
│ │ ├── tab3
│ │ │ ├── tab3.page.scss
│ │ │ ├── tab3-routing.module.ts
│ │ │ ├── tab3.page.html
│ │ │ ├── tab3.module.ts
│ │ │ ├── tab3.page.spec.ts
│ │ │ └── tab3.page.ts
│ │ ├── tabs
│ │ │ ├── tabs.page.scss
│ │ │ ├── tabs.page.ts
│ │ │ ├── tabs.module.ts
│ │ │ ├── tabs.page.html
│ │ │ ├── tabs.page.spec.ts
│ │ │ └── tabs-routing.module.ts
│ │ ├── app.component.html
│ │ ├── explore-container
│ │ │ ├── explore-container.component.html
│ │ │ ├── explore-container.component.ts
│ │ │ ├── explore-container.component.scss
│ │ │ ├── explore-container.module.ts
│ │ │ └── explore-container.component.spec.ts
│ │ ├── tab1
│ │ │ ├── tab1.page.ts
│ │ │ ├── tab1-routing.module.ts
│ │ │ ├── tab1.page.scss
│ │ │ ├── tab1.page.html
│ │ │ ├── tab1.module.ts
│ │ │ └── tab1.page.spec.ts
│ │ ├── app-routing.module.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ └── app.component.spec.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── assets
│ │ ├── icon
│ │ │ └── favicon.png
│ │ └── shapes.svg
│ ├── zone-flags.ts
│ ├── main.ts
│ ├── test.ts
│ ├── index.html
│ ├── global.scss
│ ├── polyfills.ts
│ └── theme
│ │ └── variables.scss
├── resources
│ ├── icon.png
│ ├── splash.png
│ ├── ios
│ │ ├── icon
│ │ │ ├── icon.png
│ │ │ ├── icon-20.png
│ │ │ ├── icon-29.png
│ │ │ ├── icon-40.png
│ │ │ ├── icon-50.png
│ │ │ ├── icon-60.png
│ │ │ ├── icon-72.png
│ │ │ ├── icon-76.png
│ │ │ ├── icon@2x.png
│ │ │ ├── icon-1024.png
│ │ │ ├── icon-20@2x.png
│ │ │ ├── icon-20@3x.png
│ │ │ ├── icon-24@2x.png
│ │ │ ├── icon-27.5@2x.png
│ │ │ ├── icon-29@2x.png
│ │ │ ├── icon-29@3x.png
│ │ │ ├── icon-40@2x.png
│ │ │ ├── icon-40@3x.png
│ │ │ ├── icon-44@2x.png
│ │ │ ├── icon-50@2x.png
│ │ │ ├── icon-60@2x.png
│ │ │ ├── icon-60@3x.png
│ │ │ ├── icon-72@2x.png
│ │ │ ├── icon-76@2x.png
│ │ │ ├── icon-83.5@2x.png
│ │ │ ├── icon-86@2x.png
│ │ │ ├── icon-98@2x.png
│ │ │ ├── icon-small.png
│ │ │ ├── icon-small@2x.png
│ │ │ └── icon-small@3x.png
│ │ └── splash
│ │ │ ├── Default-667h.png
│ │ │ ├── Default-736h.png
│ │ │ ├── Default-2436h.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-Landscape-2436h.png
│ │ │ ├── Default-Landscape@2x~ipad.png
│ │ │ ├── Default-Portrait@2x~ipad.png
│ │ │ ├── Default-Portrait@~ipadpro.png
│ │ │ ├── Default-Landscape@~ipadpro.png
│ │ │ └── Default@2x~universal~anyany.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-land-xhdpi-screen.png
│ │ │ ├── drawable-port-hdpi-screen.png
│ │ │ ├── drawable-port-ldpi-screen.png
│ │ │ ├── drawable-port-mdpi-screen.png
│ │ │ ├── drawable-port-xhdpi-screen.png
│ │ │ ├── drawable-land-xxhdpi-screen.png
│ │ │ ├── drawable-land-xxxhdpi-screen.png
│ │ │ ├── drawable-port-xxhdpi-screen.png
│ │ │ └── drawable-port-xxxhdpi-screen.png
│ │ └── xml
│ │ │ └── network_security_config.xml
│ └── README.md
├── ionic.config.json
├── e2e
│ ├── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
│ ├── tsconfig.json
│ └── protractor.conf.js
├── tsconfig.spec.json
├── tsconfig.app.json
├── browserslist
├── .gitignore
├── tsconfig.json
├── karma.conf.js
├── package.json
├── tslint.json
├── angular.json
└── config.xml
├── README.md
├── esc-pos-demo-ws.code-workspace
└── LICENSE
/EscPosDemo/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/EscPosDemo/src/app/tab2/tab2.page.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/EscPosDemo/src/app/tab3/tab3.page.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/EscPosDemo/src/app/tabs/tabs.page.scss:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/EscPosDemo/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
Explore UI Components
4 |A Demo application to print from Ionic 5 into thermal printer.
17 |To test print via bluetooth connection, navigate to Tab 2
18 |To test print via ethernet connection, navigate to Tab 3
19 |