All Projects → Talagozis → Food-Order

Talagozis / Food-Order

Licence: MPL-2.0 license
Food ordering template application using Ionic, Angular and Typescript.

Programming Languages

typescript
32286 projects
HTML
75241 projects
SCSS
7915 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Food-Order

Pwa Workshop Angular Firebase
Build a production ready PWA with Angular and Firebase! This workshop consists of multiple steps for producing a PWA by transforming a regular web app - Ionic Conference App into a PWA, finally deploying it to Firebase.
Stars: ✭ 45 (+125%)
Mutual labels:  ionic, progressive-web-app
Ionic Pwa
🚀 Build a Progressive Web App with Ionic and Angular. Push Notifications. Deployed to Firebase Hosting. The Complete guide to build your PWA. Service Workers. Lighthouse. Web Manifest
Stars: ✭ 87 (+335%)
Mutual labels:  ionic, progressive-web-app
onchat-web
A simple, beautiful, mobile-first instant messaging progressive web application.
Stars: ✭ 138 (+590%)
Mutual labels:  ionic, progressive-web-app
Stencil
A toolchain for building scalable, enterprise-ready component systems on top of TypeScript and Web Component standards. Stencil components can be distributed natively to React, Angular, Vue, and traditional web developers from a single, framework-agnostic codebase.
Stars: ✭ 9,880 (+49300%)
Mutual labels:  ionic, progressive-web-app
food delivery app
A Food App using Flutter & Firebase.
Stars: ✭ 75 (+275%)
Mutual labels:  food, food-delivery-application
online-menu-cloud-kitchen-and-food-delivery-system
Most Advance online restaurant menu, food delivery system, online restaurant menu, free online restaurant menu, free online restaurant menu app, online restaurant menu service provider
Stars: ✭ 16 (-20%)
Mutual labels:  food, food-delivery-application
Deckdeckgo
The web open source editor for presentations
Stars: ✭ 1,117 (+5485%)
Mutual labels:  ionic, progressive-web-app
Ionic Stencil Hn App
Ionic Stencil HackerNews App
Stars: ✭ 105 (+425%)
Mutual labels:  ionic, progressive-web-app
Fluster App
[DEPRECATED] Fluster, your simple search for roommates
Stars: ✭ 134 (+570%)
Mutual labels:  ionic, progressive-web-app
Food-App-UI-by-using-SwiftUI
youtu.be/n4EuMTY3ehc
Stars: ✭ 60 (+200%)
Mutual labels:  food, food-delivery-application
Pwa Barcode Scanner
Information about food from the barcode, on your phone 🛒
Stars: ✭ 122 (+510%)
Mutual labels:  food, progressive-web-app
ionic4-image-crop-upload
Ionic 4, Angular 7 and Cordova Crop and Upload Image
Stars: ✭ 16 (-20%)
Mutual labels:  ionic
spendlogs
SpendLogs - Personal Expense Manager
Stars: ✭ 18 (-10%)
Mutual labels:  progressive-web-app
node-mojo
Chat application NodeJS backend
Stars: ✭ 17 (-15%)
Mutual labels:  ionic
ionic3
This repository contains complete source code for Ionic 3 tutorial from https://ampersandacademy.com/tutorials/ionic-framework-3. I will try many Ionic 3 specific scripts and will write them as separate tutorial. You can follow this repo to get more tested and working script for the Ionic 3.
Stars: ✭ 21 (+5%)
Mutual labels:  ionic
OneSignal-Ionic-Sample
No description or website provided.
Stars: ✭ 85 (+325%)
Mutual labels:  ionic
whatsapp-PWA
Progressive Web app of Whatsapp web
Stars: ✭ 16 (-20%)
Mutual labels:  progressive-web-app
chihu
ionic2-example <吃乎>一款美食app 🍜 ☕️ 🍦 (This is a support android and apple ionic2 case, a food app)
Stars: ✭ 64 (+220%)
Mutual labels:  ionic
ionic2-PreDB
Simple Ionic 2+ with pre-populated database starter project
Stars: ✭ 14 (-30%)
Mutual labels:  ionic
capacitor-site
Capacitor website
Stars: ✭ 0 (-100%)
Mutual labels:  ionic

Foor-Order

Build Status

Build Status
Linux/Mac Build status
Windows Build status

Installation

Install Cordova globally

npm install -g cordova

Install Ionic globally

npm install -g ionic

Install Dependencies

npm install

Run on browser

ionic serve

Run on browser using lab

ionic serve --lab

Android

Add support for Android

ionic cordova platform add android

Run on Android

ionic cordova run android (have emulator or device connected)

IOS

Add support for IOS

ionic cordova platform add ios

Run on IOS

ionic cordova run ios (have simulator or device connected)

The Ionic Super Starter 🎮

The Ionic Super Starter is a batteries-included starter project for Ionic apps complete with pre-built pages, providers, and best practices for Ionic development.

The goal of the Super Starter is to get you from zero to app store faster than before, with a set of opinions from the Ionic team around page layout, data/user management, and project structure.

The way to use this starter is to pick and choose the various page types you want use, and remove the ones you don't. If you want a blank slate, this starter isn't for you (use the blank type instead).

One of the big advances in Ionic was moving from a rigid route-based navigation system to a flexible push/pop navigation system modeled off common native SDKs. We've embraced this pattern to provide a set of reusable pages that can be navigated to anywhere in the app. Take a look at the Settings page for a cool example of a page navigating to itself to provide a different UI without duplicating code.

Table of Contents

  1. Getting Started
  2. Pages
  3. Providers
  4. i18n (adding languages)

Getting Started

To test this starter out, install the latest version of the Ionic CLI and run:

ionic start mySuperApp super

Pages

The Super Starter comes with a variety of ready-made pages. These pages help you assemble common building blocks for your app so you can focus on your unique features and branding.

The app loads with the FirstRunPage set to TutorialPage as the default. If the user has already gone through this page once, it will be skipped the next time they load the app.

If the tutorial is skipped but the user hasn't logged in yet, the Welcome page will be displayed which is a "splash" prompting the user to log in or create an account.

Once the user is authenticated, the app will load with the MainPage which is set to be the TabsPage as the default.

The entry and main pages can be configured easily by updating the corresponding variables in src/pages/index.ts.

Please read the Pages readme, and the readme for each page in the source for more documentation on each.

Providers

The Super Starter comes with some basic implementations of common providers.

User

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.

Api

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

i18n

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.

Adding Languages

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.).

Changing the Language

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/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].