Nhu Nguyen 6 anni fa
commit
bf4f674cf0
76 ha cambiato i file con 7050 aggiunte e 0 eliminazioni
  1. 17
    0
      .editorconfig
  2. 35
    0
      .gitignore
  3. 84
    0
      config.xml
  4. 8
    0
      ionic.config.json
  5. 13
    0
      ionic.starter.json
  6. 6520
    0
      package-lock.json
  7. 40
    0
      package.json
  8. 8
    0
      resources/README.md
  9. BIN
      resources/android/icon/drawable-hdpi-icon.png
  10. BIN
      resources/android/icon/drawable-ldpi-icon.png
  11. BIN
      resources/android/icon/drawable-mdpi-icon.png
  12. BIN
      resources/android/icon/drawable-xhdpi-icon.png
  13. BIN
      resources/android/icon/drawable-xxhdpi-icon.png
  14. BIN
      resources/android/icon/drawable-xxxhdpi-icon.png
  15. BIN
      resources/android/splash/drawable-land-hdpi-screen.png
  16. BIN
      resources/android/splash/drawable-land-ldpi-screen.png
  17. BIN
      resources/android/splash/drawable-land-mdpi-screen.png
  18. BIN
      resources/android/splash/drawable-land-xhdpi-screen.png
  19. BIN
      resources/android/splash/drawable-land-xxhdpi-screen.png
  20. BIN
      resources/android/splash/drawable-land-xxxhdpi-screen.png
  21. BIN
      resources/android/splash/drawable-port-hdpi-screen.png
  22. BIN
      resources/android/splash/drawable-port-ldpi-screen.png
  23. BIN
      resources/android/splash/drawable-port-mdpi-screen.png
  24. BIN
      resources/android/splash/drawable-port-xhdpi-screen.png
  25. BIN
      resources/android/splash/drawable-port-xxhdpi-screen.png
  26. BIN
      resources/android/splash/drawable-port-xxxhdpi-screen.png
  27. BIN
      resources/icon.png
  28. BIN
      resources/ios/icon/icon-1024.png
  29. BIN
      resources/ios/icon/icon-40.png
  30. BIN
      resources/ios/icon/icon-40@2x.png
  31. BIN
      resources/ios/icon/icon-40@3x.png
  32. BIN
      resources/ios/icon/icon-50.png
  33. BIN
      resources/ios/icon/icon-50@2x.png
  34. BIN
      resources/ios/icon/icon-60.png
  35. BIN
      resources/ios/icon/icon-60@2x.png
  36. BIN
      resources/ios/icon/icon-60@3x.png
  37. BIN
      resources/ios/icon/icon-72.png
  38. BIN
      resources/ios/icon/icon-72@2x.png
  39. BIN
      resources/ios/icon/icon-76.png
  40. BIN
      resources/ios/icon/icon-76@2x.png
  41. BIN
      resources/ios/icon/icon-83.5@2x.png
  42. BIN
      resources/ios/icon/icon-small.png
  43. BIN
      resources/ios/icon/icon-small@2x.png
  44. BIN
      resources/ios/icon/icon-small@3x.png
  45. BIN
      resources/ios/icon/icon.png
  46. BIN
      resources/ios/icon/icon@2x.png
  47. BIN
      resources/ios/splash/Default-568h@2x~iphone.png
  48. BIN
      resources/ios/splash/Default-667h.png
  49. BIN
      resources/ios/splash/Default-736h.png
  50. BIN
      resources/ios/splash/Default-Landscape-736h.png
  51. BIN
      resources/ios/splash/Default-Landscape@2x~ipad.png
  52. BIN
      resources/ios/splash/Default-Landscape@~ipadpro.png
  53. BIN
      resources/ios/splash/Default-Landscape~ipad.png
  54. BIN
      resources/ios/splash/Default-Portrait@2x~ipad.png
  55. BIN
      resources/ios/splash/Default-Portrait@~ipadpro.png
  56. BIN
      resources/ios/splash/Default-Portrait~ipad.png
  57. BIN
      resources/ios/splash/Default@2x~iphone.png
  58. BIN
      resources/ios/splash/Default@2x~universal~anyany.png
  59. BIN
      resources/ios/splash/Default~iphone.png
  60. BIN
      resources/splash.png
  61. 22
    0
      src/app/app.component.ts
  62. 1
    0
      src/app/app.html
  63. 30
    0
      src/app/app.module.ts
  64. 16
    0
      src/app/app.scss
  65. 5
    0
      src/app/main.ts
  66. BIN
      src/assets/icon/favicon.ico
  67. BIN
      src/assets/imgs/logo.png
  68. 49
    0
      src/index.html
  69. 13
    0
      src/manifest.json
  70. 14
    0
      src/pages/home/home.html
  71. 3
    0
      src/pages/home/home.scss
  72. 14
    0
      src/pages/home/home.ts
  73. 31
    0
      src/service-worker.js
  74. 88
    0
      src/theme/variables.scss
  75. 28
    0
      tsconfig.json
  76. 11
    0
      tslint.json

+ 17
- 0
.editorconfig Vedi File

@@ -0,0 +1,17 @@
1
+# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
2
+# editorconfig.org
3
+
4
+root = true
5
+
6
+[*]
7
+indent_style = space
8
+indent_size = 2
9
+
10
+# We recommend you to keep these unchanged
11
+end_of_line = lf
12
+charset = utf-8
13
+trim_trailing_whitespace = true
14
+insert_final_newline = true
15
+
16
+[*.md]
17
+trim_trailing_whitespace = false

+ 35
- 0
.gitignore Vedi File

@@ -0,0 +1,35 @@
1
+# Specifies intentionally untracked files to ignore when using Git
2
+# http://git-scm.com/docs/gitignore
3
+
4
+*~
5
+*.sw[mnpcod]
6
+*.log
7
+*.tmp
8
+*.tmp.*
9
+log.txt
10
+*.sublime-project
11
+*.sublime-workspace
12
+.vscode/
13
+npm-debug.log*
14
+
15
+.idea/
16
+.sourcemaps/
17
+.sass-cache/
18
+.tmp/
19
+.versions/
20
+coverage/
21
+dist/
22
+node_modules/
23
+tmp/
24
+temp/
25
+hooks/
26
+platforms/
27
+plugins/
28
+plugins/android.json
29
+plugins/ios.json
30
+www/
31
+$RECYCLE.BIN/
32
+
33
+.DS_Store
34
+Thumbs.db
35
+UserInterfaceState.xcuserstate

+ 84
- 0
config.xml Vedi File

@@ -0,0 +1,84 @@
1
+<?xml version='1.0' encoding='utf-8'?>
2
+<widget id="io.ionic.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3
+    <name>ionic-http</name>
4
+    <description>An awesome Ionic/Cordova app.</description>
5
+    <author email="hi@ionicframework" href="http://ionicframework.com/">Ionic Framework Team</author>
6
+    <content src="index.html" />
7
+    <access origin="*" />
8
+    <allow-intent href="http://*/*" />
9
+    <allow-intent href="https://*/*" />
10
+    <allow-intent href="tel:*" />
11
+    <allow-intent href="sms:*" />
12
+    <allow-intent href="mailto:*" />
13
+    <allow-intent href="geo:*" />
14
+    <preference name="ScrollEnabled" value="false" />
15
+    <preference name="android-minSdkVersion" value="19" />
16
+    <preference name="BackupWebStorage" value="none" />
17
+    <preference name="SplashMaintainAspectRatio" value="true" />
18
+    <preference name="FadeSplashScreenDuration" value="300" />
19
+    <preference name="SplashShowOnlyFirstTime" value="false" />
20
+    <preference name="SplashScreen" value="screen" />
21
+    <preference name="SplashScreenDelay" value="3000" />
22
+    <platform name="android">
23
+        <allow-intent href="market:*" />
24
+        <icon density="ldpi" src="resources/android/icon/drawable-ldpi-icon.png" />
25
+        <icon density="mdpi" src="resources/android/icon/drawable-mdpi-icon.png" />
26
+        <icon density="hdpi" src="resources/android/icon/drawable-hdpi-icon.png" />
27
+        <icon density="xhdpi" src="resources/android/icon/drawable-xhdpi-icon.png" />
28
+        <icon density="xxhdpi" src="resources/android/icon/drawable-xxhdpi-icon.png" />
29
+        <icon density="xxxhdpi" src="resources/android/icon/drawable-xxxhdpi-icon.png" />
30
+        <splash density="land-ldpi" src="resources/android/splash/drawable-land-ldpi-screen.png" />
31
+        <splash density="land-mdpi" src="resources/android/splash/drawable-land-mdpi-screen.png" />
32
+        <splash density="land-hdpi" src="resources/android/splash/drawable-land-hdpi-screen.png" />
33
+        <splash density="land-xhdpi" src="resources/android/splash/drawable-land-xhdpi-screen.png" />
34
+        <splash density="land-xxhdpi" src="resources/android/splash/drawable-land-xxhdpi-screen.png" />
35
+        <splash density="land-xxxhdpi" src="resources/android/splash/drawable-land-xxxhdpi-screen.png" />
36
+        <splash density="port-ldpi" src="resources/android/splash/drawable-port-ldpi-screen.png" />
37
+        <splash density="port-mdpi" src="resources/android/splash/drawable-port-mdpi-screen.png" />
38
+        <splash density="port-hdpi" src="resources/android/splash/drawable-port-hdpi-screen.png" />
39
+        <splash density="port-xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png" />
40
+        <splash density="port-xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png" />
41
+        <splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png" />
42
+    </platform>
43
+    <platform name="ios">
44
+        <allow-intent href="itms:*" />
45
+        <allow-intent href="itms-apps:*" />
46
+        <icon height="57" src="resources/ios/icon/icon.png" width="57" />
47
+        <icon height="114" src="resources/ios/icon/icon@2x.png" width="114" />
48
+        <icon height="40" src="resources/ios/icon/icon-40.png" width="40" />
49
+        <icon height="80" src="resources/ios/icon/icon-40@2x.png" width="80" />
50
+        <icon height="120" src="resources/ios/icon/icon-40@3x.png" width="120" />
51
+        <icon height="50" src="resources/ios/icon/icon-50.png" width="50" />
52
+        <icon height="100" src="resources/ios/icon/icon-50@2x.png" width="100" />
53
+        <icon height="60" src="resources/ios/icon/icon-60.png" width="60" />
54
+        <icon height="120" src="resources/ios/icon/icon-60@2x.png" width="120" />
55
+        <icon height="180" src="resources/ios/icon/icon-60@3x.png" width="180" />
56
+        <icon height="72" src="resources/ios/icon/icon-72.png" width="72" />
57
+        <icon height="144" src="resources/ios/icon/icon-72@2x.png" width="144" />
58
+        <icon height="76" src="resources/ios/icon/icon-76.png" width="76" />
59
+        <icon height="152" src="resources/ios/icon/icon-76@2x.png" width="152" />
60
+        <icon height="167" src="resources/ios/icon/icon-83.5@2x.png" width="167" />
61
+        <icon height="29" src="resources/ios/icon/icon-small.png" width="29" />
62
+        <icon height="58" src="resources/ios/icon/icon-small@2x.png" width="58" />
63
+        <icon height="87" src="resources/ios/icon/icon-small@3x.png" width="87" />
64
+        <icon height="1024" src="resources/ios/icon/icon-1024.png" width="1024" />
65
+        <splash height="1136" src="resources/ios/splash/Default-568h@2x~iphone.png" width="640" />
66
+        <splash height="1334" src="resources/ios/splash/Default-667h.png" width="750" />
67
+        <splash height="2208" src="resources/ios/splash/Default-736h.png" width="1242" />
68
+        <splash height="1242" src="resources/ios/splash/Default-Landscape-736h.png" width="2208" />
69
+        <splash height="1536" src="resources/ios/splash/Default-Landscape@2x~ipad.png" width="2048" />
70
+        <splash height="2048" src="resources/ios/splash/Default-Landscape@~ipadpro.png" width="2732" />
71
+        <splash height="768" src="resources/ios/splash/Default-Landscape~ipad.png" width="1024" />
72
+        <splash height="2048" src="resources/ios/splash/Default-Portrait@2x~ipad.png" width="1536" />
73
+        <splash height="2732" src="resources/ios/splash/Default-Portrait@~ipadpro.png" width="2048" />
74
+        <splash height="1024" src="resources/ios/splash/Default-Portrait~ipad.png" width="768" />
75
+        <splash height="960" src="resources/ios/splash/Default@2x~iphone.png" width="640" />
76
+        <splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" />
77
+        <splash height="2732" src="resources/ios/splash/Default@2x~universal~anyany.png" width="2732" />
78
+    </platform>
79
+    <plugin name="cordova-plugin-whitelist" spec="1.3.3" />
80
+    <plugin name="cordova-plugin-device" spec="2.0.2" />
81
+    <plugin name="cordova-plugin-splashscreen" spec="5.0.2" />
82
+    <plugin name="cordova-plugin-ionic-webview" spec="1.1.19" />
83
+    <plugin name="cordova-plugin-ionic-keyboard" spec="2.0.5" />
84
+</widget>

+ 8
- 0
ionic.config.json Vedi File

@@ -0,0 +1,8 @@
1
+{
2
+  "name": "ionic-http",
3
+  "app_id": "",
4
+  "type": "ionic-angular",
5
+  "integrations": {
6
+    "cordova": {}
7
+  }
8
+}

+ 13
- 0
ionic.starter.json Vedi File

@@ -0,0 +1,13 @@
1
+{
2
+  "name": "Blank Starter",
3
+  "baseref": "master",
4
+  "tarignore": [
5
+    ".sourcemaps",
6
+    "node_modules",
7
+    "package-lock.json",
8
+    "www"
9
+  ],
10
+  "scripts": {
11
+    "test": "npm run build"
12
+  }
13
+}

+ 6520
- 0
package-lock.json
File diff suppressed because it is too large
Vedi File


+ 40
- 0
package.json Vedi File

@@ -0,0 +1,40 @@
1
+{
2
+  "name": "ionic-http",
3
+  "version": "0.0.1",
4
+  "author": "Ionic Framework",
5
+  "homepage": "http://ionicframework.com/",
6
+  "private": true,
7
+  "scripts": {
8
+    "clean": "ionic-app-scripts clean",
9
+    "build": "ionic-app-scripts build",
10
+    "lint": "ionic-app-scripts lint",
11
+    "ionic:build": "ionic-app-scripts build",
12
+    "ionic:serve": "ionic-app-scripts serve"
13
+  },
14
+  "dependencies": {
15
+    "@angular/animations": "5.2.11",
16
+    "@angular/common": "5.2.11",
17
+    "@angular/compiler": "5.2.11",
18
+    "@angular/compiler-cli": "5.2.11",
19
+    "@angular/core": "5.2.11",
20
+    "@angular/forms": "5.2.11",
21
+    "@angular/http": "5.2.11",
22
+    "@angular/platform-browser": "5.2.11",
23
+    "@angular/platform-browser-dynamic": "5.2.11",
24
+    "@ionic-native/core": "4.9.1",
25
+    "@ionic-native/splash-screen": "4.9.1",
26
+    "@ionic-native/status-bar": "4.9.1",
27
+    "@ionic/pro": "1.0.20",
28
+    "@ionic/storage": "2.1.3",
29
+    "ionic-angular": "3.9.2",
30
+    "ionicons": "3.0.0",
31
+    "rxjs": "5.5.11",
32
+    "sw-toolbox": "3.6.0",
33
+    "zone.js": "0.8.26"
34
+  },
35
+  "devDependencies": {
36
+    "@ionic/app-scripts": "3.1.10",
37
+    "typescript": "~2.6.2"
38
+  },
39
+  "description": "An Ionic project"
40
+}

+ 8
- 0
resources/README.md Vedi File

@@ -0,0 +1,8 @@
1
+These are Cordova resources. You can replace icon.png and splash.png and run
2
+`ionic cordova resources` to generate custom icons and splash screens for your
3
+app. See `ionic cordova resources --help` for details.
4
+
5
+Cordova reference documentation:
6
+
7
+- Icons: https://cordova.apache.org/docs/en/latest/config_ref/images.html
8
+- Splash Screens: https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/

BIN
resources/android/icon/drawable-hdpi-icon.png Vedi File


BIN
resources/android/icon/drawable-ldpi-icon.png Vedi File


BIN
resources/android/icon/drawable-mdpi-icon.png Vedi File


BIN
resources/android/icon/drawable-xhdpi-icon.png Vedi File


BIN
resources/android/icon/drawable-xxhdpi-icon.png Vedi File


BIN
resources/android/icon/drawable-xxxhdpi-icon.png Vedi File


BIN
resources/android/splash/drawable-land-hdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-land-ldpi-screen.png Vedi File


BIN
resources/android/splash/drawable-land-mdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-land-xhdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-land-xxhdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-land-xxxhdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-port-hdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-port-ldpi-screen.png Vedi File


BIN
resources/android/splash/drawable-port-mdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-port-xhdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-port-xxhdpi-screen.png Vedi File


BIN
resources/android/splash/drawable-port-xxxhdpi-screen.png Vedi File


BIN
resources/icon.png Vedi File


BIN
resources/ios/icon/icon-1024.png Vedi File


BIN
resources/ios/icon/icon-40.png Vedi File


BIN
resources/ios/icon/icon-40@2x.png Vedi File


BIN
resources/ios/icon/icon-40@3x.png Vedi File


BIN
resources/ios/icon/icon-50.png Vedi File


BIN
resources/ios/icon/icon-50@2x.png Vedi File


BIN
resources/ios/icon/icon-60.png Vedi File


BIN
resources/ios/icon/icon-60@2x.png Vedi File


BIN
resources/ios/icon/icon-60@3x.png Vedi File


BIN
resources/ios/icon/icon-72.png Vedi File


BIN
resources/ios/icon/icon-72@2x.png Vedi File


BIN
resources/ios/icon/icon-76.png Vedi File


BIN
resources/ios/icon/icon-76@2x.png Vedi File


BIN
resources/ios/icon/icon-83.5@2x.png Vedi File


BIN
resources/ios/icon/icon-small.png Vedi File


BIN
resources/ios/icon/icon-small@2x.png Vedi File


BIN
resources/ios/icon/icon-small@3x.png Vedi File


BIN
resources/ios/icon/icon.png Vedi File


BIN
resources/ios/icon/icon@2x.png Vedi File


BIN
resources/ios/splash/Default-568h@2x~iphone.png Vedi File


BIN
resources/ios/splash/Default-667h.png Vedi File


BIN
resources/ios/splash/Default-736h.png Vedi File


BIN
resources/ios/splash/Default-Landscape-736h.png Vedi File


BIN
resources/ios/splash/Default-Landscape@2x~ipad.png Vedi File


BIN
resources/ios/splash/Default-Landscape@~ipadpro.png Vedi File


BIN
resources/ios/splash/Default-Landscape~ipad.png Vedi File


BIN
resources/ios/splash/Default-Portrait@2x~ipad.png Vedi File


BIN
resources/ios/splash/Default-Portrait@~ipadpro.png Vedi File


BIN
resources/ios/splash/Default-Portrait~ipad.png Vedi File


BIN
resources/ios/splash/Default@2x~iphone.png Vedi File


BIN
resources/ios/splash/Default@2x~universal~anyany.png Vedi File


BIN
resources/ios/splash/Default~iphone.png Vedi File


BIN
resources/splash.png Vedi File


+ 22
- 0
src/app/app.component.ts Vedi File

@@ -0,0 +1,22 @@
1
+import { Component } from '@angular/core';
2
+import { Platform } from 'ionic-angular';
3
+import { StatusBar } from '@ionic-native/status-bar';
4
+import { SplashScreen } from '@ionic-native/splash-screen';
5
+
6
+import { HomePage } from '../pages/home/home';
7
+@Component({
8
+  templateUrl: 'app.html'
9
+})
10
+export class MyApp {
11
+  rootPage:any = HomePage;
12
+
13
+  constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
14
+    platform.ready().then(() => {
15
+      // Okay, so the platform is ready and our plugins are available.
16
+      // Here you can do any higher level native things you might need.
17
+      statusBar.styleDefault();
18
+      splashScreen.hide();
19
+    });
20
+  }
21
+}
22
+

+ 1
- 0
src/app/app.html Vedi File

@@ -0,0 +1 @@
1
+<ion-nav [root]="rootPage"></ion-nav>

+ 30
- 0
src/app/app.module.ts Vedi File

@@ -0,0 +1,30 @@
1
+import { BrowserModule } from '@angular/platform-browser';
2
+import { ErrorHandler, NgModule } from '@angular/core';
3
+import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';
4
+import { SplashScreen } from '@ionic-native/splash-screen';
5
+import { StatusBar } from '@ionic-native/status-bar';
6
+
7
+import { MyApp } from './app.component';
8
+import { HomePage } from '../pages/home/home';
9
+
10
+@NgModule({
11
+  declarations: [
12
+    MyApp,
13
+    HomePage
14
+  ],
15
+  imports: [
16
+    BrowserModule,
17
+    IonicModule.forRoot(MyApp)
18
+  ],
19
+  bootstrap: [IonicApp],
20
+  entryComponents: [
21
+    MyApp,
22
+    HomePage
23
+  ],
24
+  providers: [
25
+    StatusBar,
26
+    SplashScreen,
27
+    {provide: ErrorHandler, useClass: IonicErrorHandler}
28
+  ]
29
+})
30
+export class AppModule {}

+ 16
- 0
src/app/app.scss Vedi File

@@ -0,0 +1,16 @@
1
+// http://ionicframework.com/docs/theming/
2
+
3
+
4
+// App Global Sass
5
+// --------------------------------------------------
6
+// Put style rules here that you want to apply globally. These
7
+// styles are for the entire app and not just one component.
8
+// Additionally, this file can be also used as an entry point
9
+// to import other Sass files to be included in the output CSS.
10
+//
11
+// Shared Sass variables, which can be used to adjust Ionic's
12
+// default Sass variables, belong in "theme/variables.scss".
13
+//
14
+// To declare rules for a specific mode, create a child rule
15
+// for the .md, .ios, or .wp mode classes. The mode class is
16
+// automatically applied to the <body> element in the app.

+ 5
- 0
src/app/main.ts Vedi File

@@ -0,0 +1,5 @@
1
+import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2
+
3
+import { AppModule } from './app.module';
4
+
5
+platformBrowserDynamic().bootstrapModule(AppModule);

BIN
src/assets/icon/favicon.ico Vedi File


BIN
src/assets/imgs/logo.png Vedi File


+ 49
- 0
src/index.html Vedi File

@@ -0,0 +1,49 @@
1
+<!DOCTYPE html>
2
+<html lang="en" dir="ltr">
3
+<head>
4
+  <meta charset="UTF-8">
5
+  <title>Ionic App</title>
6
+  <meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
7
+  <meta name="format-detection" content="telephone=no">
8
+  <meta name="msapplication-tap-highlight" content="no">
9
+
10
+  <link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
11
+  <link rel="manifest" href="manifest.json">
12
+  <meta name="theme-color" content="#4e8ef7">
13
+
14
+  <!-- add to homescreen for ios -->
15
+  <meta name="apple-mobile-web-app-capable" content="yes">
16
+  <meta name="apple-mobile-web-app-status-bar-style" content="black">
17
+
18
+  <!-- cordova.js required for cordova apps (remove if not needed) -->
19
+  <script src="cordova.js"></script>
20
+
21
+  <!-- un-comment this code to enable service worker
22
+  <script>
23
+    if ('serviceWorker' in navigator) {
24
+      navigator.serviceWorker.register('service-worker.js')
25
+        .then(() => console.log('service worker installed'))
26
+        .catch(err => console.error('Error', err));
27
+    }
28
+  </script>-->
29
+
30
+  <link href="build/main.css" rel="stylesheet">
31
+
32
+</head>
33
+<body>
34
+
35
+  <!-- Ionic's root component and where the app will load -->
36
+  <ion-app></ion-app>
37
+
38
+  <!-- The polyfills js is generated during the build process -->
39
+  <script src="build/polyfills.js"></script>
40
+
41
+  <!-- The vendor js is generated during the build process
42
+       It contains all of the dependencies in node_modules -->
43
+  <script src="build/vendor.js"></script>
44
+
45
+  <!-- The main bundle js is generated during the build process -->
46
+  <script src="build/main.js"></script>
47
+
48
+</body>
49
+</html>

+ 13
- 0
src/manifest.json Vedi File

@@ -0,0 +1,13 @@
1
+{
2
+  "name": "Ionic",
3
+  "short_name": "Ionic",
4
+  "start_url": "index.html",
5
+  "display": "standalone",
6
+  "icons": [{
7
+    "src": "assets/imgs/logo.png",
8
+    "sizes": "512x512",
9
+    "type": "image/png"
10
+  }],
11
+  "background_color": "#4e8ef7",
12
+  "theme_color": "#4e8ef7"
13
+}

+ 14
- 0
src/pages/home/home.html Vedi File

@@ -0,0 +1,14 @@
1
+<ion-header>
2
+  <ion-navbar>
3
+    <ion-title>
4
+      Ionic Blank
5
+    </ion-title>
6
+  </ion-navbar>
7
+</ion-header>
8
+
9
+<ion-content padding>
10
+  The world is your oyster.
11
+  <p>
12
+    If you get lost, the <a href="http://ionicframework.com/docs/v2">docs</a> will be your guide.
13
+  </p>
14
+</ion-content>

+ 3
- 0
src/pages/home/home.scss Vedi File

@@ -0,0 +1,3 @@
1
+page-home {
2
+
3
+}

+ 14
- 0
src/pages/home/home.ts Vedi File

@@ -0,0 +1,14 @@
1
+import { Component } from '@angular/core';
2
+import { NavController } from 'ionic-angular';
3
+
4
+@Component({
5
+  selector: 'page-home',
6
+  templateUrl: 'home.html'
7
+})
8
+export class HomePage {
9
+
10
+  constructor(public navCtrl: NavController) {
11
+
12
+  }
13
+
14
+}

+ 31
- 0
src/service-worker.js Vedi File

@@ -0,0 +1,31 @@
1
+/**
2
+ * Check out https://googlechromelabs.github.io/sw-toolbox/ for
3
+ * more info on how to use sw-toolbox to custom configure your service worker.
4
+ */
5
+
6
+
7
+'use strict';
8
+importScripts('./build/sw-toolbox.js');
9
+
10
+self.toolbox.options.cache = {
11
+  name: 'ionic-cache'
12
+};
13
+
14
+// pre-cache our key assets
15
+self.toolbox.precache(
16
+  [
17
+    './build/main.js',
18
+    './build/vendor.js',
19
+    './build/main.css',
20
+    './build/polyfills.js',
21
+    'index.html',
22
+    'manifest.json'
23
+  ]
24
+);
25
+
26
+// dynamically cache any other local assets
27
+self.toolbox.router.any('/*', self.toolbox.fastest);
28
+
29
+// for any other requests go to the network, cache,
30
+// and then only use that cached resource if your user goes offline
31
+self.toolbox.router.default = self.toolbox.networkFirst;

+ 88
- 0
src/theme/variables.scss Vedi File

@@ -0,0 +1,88 @@
1
+// Ionic Variables and Theming. For more info, please see:
2
+// http://ionicframework.com/docs/theming/
3
+
4
+// Font path is used to include ionicons,
5
+// roboto, and noto sans fonts
6
+$font-path: "../assets/fonts";
7
+
8
+
9
+// The app direction is used to include
10
+// rtl styles in your app. For more info, please see:
11
+// http://ionicframework.com/docs/theming/rtl-support/
12
+$app-direction: ltr;
13
+
14
+
15
+@import "ionic.globals";
16
+
17
+
18
+// Shared Variables
19
+// --------------------------------------------------
20
+// To customize the look and feel of this app, you can override
21
+// the Sass variables found in Ionic's source scss files.
22
+// To view all the possible Ionic variables, see:
23
+// http://ionicframework.com/docs/theming/overriding-ionic-variables/
24
+
25
+
26
+
27
+
28
+// Named Color Variables
29
+// --------------------------------------------------
30
+// Named colors makes it easy to reuse colors on various components.
31
+// It's highly recommended to change the default colors
32
+// to match your app's branding. Ionic uses a Sass map of
33
+// colors so you can add, rename and remove colors as needed.
34
+// The "primary" color is the only required color in the map.
35
+
36
+$colors: (
37
+  primary:    #488aff,
38
+  secondary:  #32db64,
39
+  danger:     #f53d3d,
40
+  light:      #f4f4f4,
41
+  dark:       #222
42
+);
43
+
44
+
45
+// App iOS Variables
46
+// --------------------------------------------------
47
+// iOS only Sass variables can go here
48
+
49
+
50
+
51
+
52
+// App Material Design Variables
53
+// --------------------------------------------------
54
+// Material Design only Sass variables can go here
55
+
56
+
57
+
58
+
59
+// App Windows Variables
60
+// --------------------------------------------------
61
+// Windows only Sass variables can go here
62
+
63
+
64
+
65
+
66
+// App Theme
67
+// --------------------------------------------------
68
+// Ionic apps can have different themes applied, which can
69
+// then be future customized. This import comes last
70
+// so that the above variables are used and Ionic's
71
+// default are overridden.
72
+
73
+@import "ionic.theme.default";
74
+
75
+
76
+// Ionicons
77
+// --------------------------------------------------
78
+// The premium icon font for Ionic. For more info, please see:
79
+// http://ionicframework.com/docs/ionicons/
80
+
81
+@import "ionic.ionicons";
82
+
83
+
84
+// Fonts
85
+// --------------------------------------------------
86
+
87
+@import "roboto";
88
+@import "noto-sans";

+ 28
- 0
tsconfig.json Vedi File

@@ -0,0 +1,28 @@
1
+{
2
+  "compilerOptions": {
3
+    "allowSyntheticDefaultImports": true,
4
+    "declaration": false,
5
+    "emitDecoratorMetadata": true,
6
+    "experimentalDecorators": true,
7
+    "lib": [
8
+      "dom",
9
+      "es2015"
10
+    ],
11
+    "module": "es2015",
12
+    "moduleResolution": "node",
13
+    "sourceMap": true,
14
+    "target": "es5"
15
+  },
16
+  "include": [
17
+    "src/**/*.ts"
18
+  ],
19
+  "exclude": [
20
+    "node_modules",
21
+    "src/**/*.spec.ts",
22
+    "src/**/__tests__/*.ts"
23
+  ],
24
+  "compileOnSave": false,
25
+  "atom": {
26
+    "rewriteTsconfig": false
27
+  }
28
+}

+ 11
- 0
tslint.json Vedi File

@@ -0,0 +1,11 @@
1
+{
2
+  "rules": {
3
+    "no-duplicate-variable": true,
4
+    "no-unused-variable": [
5
+      true
6
+    ]
7
+  },
8
+  "rulesDirectory": [
9
+    "node_modules/tslint-eslint-rules/dist/rules"
10
+  ]
11
+}