├── .editorconfig ├── .gitignore ├── README.md ├── config.xml ├── hooks └── README.md ├── ionic.config.json ├── package.json ├── resources ├── 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-land-xxhdpi-screen.png │ │ ├── drawable-land-xxxhdpi-screen.png │ │ ├── drawable-port-hdpi-screen.png │ │ ├── drawable-port-ldpi-screen.png │ │ ├── drawable-port-mdpi-screen.png │ │ ├── drawable-port-xhdpi-screen.png │ │ ├── drawable-port-xxhdpi-screen.png │ │ └── drawable-port-xxxhdpi-screen.png ├── icon.png ├── ios │ ├── icon │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ └── icon@2x.png │ └── splash │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape@2x~ipad.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default@2x~iphone.png │ │ └── Default~iphone.png └── splash.png ├── src ├── app │ ├── app.component.ts │ ├── app.html │ ├── app.module.ts │ ├── app.scss │ └── main.ts ├── assets │ └── icon │ │ └── favicon.ico ├── declarations.d.ts ├── index.html ├── manifest.json ├── pages │ ├── account │ │ ├── account.html │ │ └── account.ts │ ├── chat-view │ │ ├── chat-view.html │ │ ├── chat-view.scss │ │ └── chat-view.ts │ ├── chats │ │ ├── chats.html │ │ └── chats.ts │ ├── login │ │ ├── login.html │ │ └── login.ts │ ├── tabs │ │ ├── tabs.html │ │ └── tabs.ts │ └── users │ │ ├── users.html │ │ └── users.ts ├── providers │ ├── auth-provider │ │ └── auth-provider.ts │ ├── chats-provider │ │ └── chats-provider.ts │ ├── user-provider │ │ └── user-provider.ts │ └── utils.ts ├── service-worker.js ├── theme │ └── variables.scss └── validators │ └── email.ts ├── tsconfig.json ├── tslint.json └── www └── index.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/README.md -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/config.xml -------------------------------------------------------------------------------- /hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/hooks/README.md -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/ionic.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/package.json -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-40@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/app/app.html -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/app/main.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/index.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/account/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/account/account.html -------------------------------------------------------------------------------- /src/pages/account/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/account/account.ts -------------------------------------------------------------------------------- /src/pages/chat-view/chat-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/chat-view/chat-view.html -------------------------------------------------------------------------------- /src/pages/chat-view/chat-view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/chat-view/chat-view.scss -------------------------------------------------------------------------------- /src/pages/chat-view/chat-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/chat-view/chat-view.ts -------------------------------------------------------------------------------- /src/pages/chats/chats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/chats/chats.html -------------------------------------------------------------------------------- /src/pages/chats/chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/chats/chats.ts -------------------------------------------------------------------------------- /src/pages/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/login/login.html -------------------------------------------------------------------------------- /src/pages/login/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/login/login.ts -------------------------------------------------------------------------------- /src/pages/tabs/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/tabs/tabs.html -------------------------------------------------------------------------------- /src/pages/tabs/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/tabs/tabs.ts -------------------------------------------------------------------------------- /src/pages/users/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/users/users.html -------------------------------------------------------------------------------- /src/pages/users/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/pages/users/users.ts -------------------------------------------------------------------------------- /src/providers/auth-provider/auth-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/providers/auth-provider/auth-provider.ts -------------------------------------------------------------------------------- /src/providers/chats-provider/chats-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/providers/chats-provider/chats-provider.ts -------------------------------------------------------------------------------- /src/providers/user-provider/user-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/providers/user-provider/user-provider.ts -------------------------------------------------------------------------------- /src/providers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/providers/utils.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/validators/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/src/validators/email.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/tslint.json -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic2blueprints/firebase-chat/HEAD/www/index.html --------------------------------------------------------------------------------