- Getting Started
- Pages
- Providers
- i18n (adding languages)
open the app in the broswer:
cd MobileAssistant
npm install
ionic serve
the pages of the app.
The common providers.
The User
provider is used to authenticate users through its login(accountInfo)
and signup(accountInfo)
methods, which perform POST
requests to an API endpoint that you will need to configure.
The Api
provider is a simple CRUD frontend to an API. Simply put the root of your API url in the Api class and call get/post/put/patch/delete
Ionic Super Starter comes with internationalization (i18n) out of the box with ngx-translate. This makes it easy to change the text used in the app by modifying only one file.
To add new languages, add new files to the src/assets/i18n
directory, following the pattern of LANGCODE.json where LANGCODE is the language/locale code (ex: en/gb/de/es/etc.).
To change the language of the app, edit src/app/app.component.ts
and modify translate.use('en')
to use the LANGCODE from src/assets/i18n/