- install ionic
npm install -g ionic
- init project
ionic start APP_NAME APP_TYPE --type=FRAMEWORK
- APP_TYPES
- blank "create blank project"
- tabs "create with tabs navigation"
- FRAMEWORK
- angular
- react *
- vue
- APP_TYPES
Created
June 19, 2021 17:50
-
-
Save mikoloism/8bee941e8dfd5dfffe26f02350f0d3de to your computer and use it in GitHub Desktop.
How start with Ionic framework v4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- [ IMPORT IONIC BUNDLES ] --> | |
<link rel="stylesheet" href="https://unpkg.com/@ionic/core@latest/css/ionic.bundle.css" /> | |
<script src="https://unpkg.com/@ionic/core@latest/dist/ionic.js"></script> | |
</head> | |
<body> | |
<ion-app> | |
<ion-content> | |
<ion-list> | |
<ion-item> | |
Show Detail | |
<ion-toggle slot="end"></ion-toggle> | |
</ion-item> | |
</ion-list> | |
</ion-content> | |
</ion-app> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment