Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
allo-app
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nabil Sadki
allo-app
Commits
e561b39e
Commit
e561b39e
authored
Aug 29, 2019
by
Nabil Sadki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Launch time
parent
29001148
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
34 additions
and
5 deletions
+34
-5
CHANGELOG.md
CHANGELOG.md
+1
-0
config.xml
config.xml
+4
-4
app.component.ts
src/app/app.component.ts
+4
-0
app.scss
src/app/app.scss
+17
-0
mainslider.page.ts
src/app/pages/mainslider/mainslider.page.ts
+4
-1
index.html
src/index.html
+4
-0
No files found.
CHANGELOG.md
View file @
e561b39e
v1.1.0.0
v1.1.0.0
-
Add login form
-
Add login form
-
Optimise launch time
v1.0.8.3
v1.0.8.3
-
Show main slide
-
Show main slide
...
...
config.xml
View file @
e561b39e
...
@@ -93,17 +93,17 @@
...
@@ -93,17 +93,17 @@
<preference
name=
"DisallowOverscroll"
value=
"true"
/>
<preference
name=
"DisallowOverscroll"
value=
"true"
/>
<preference
name=
"android-minSdkVersion"
value=
"19"
/>
<preference
name=
"android-minSdkVersion"
value=
"19"
/>
<preference
name=
"BackupWebStorage"
value=
"none"
/>
<preference
name=
"BackupWebStorage"
value=
"none"
/>
<preference
name=
"SplashScreenDelay"
value=
"10000"
/>
<preference
name=
"fullscreen"
value=
"true"
/>
<preference
name=
"SplashScreenDelay"
value=
"0"
/>
<preference
name=
"FadeSplashScreen"
value=
"true"
/>
<preference
name=
"FadeSplashScreen"
value=
"true"
/>
<preference
name=
"ShowSplashScreen"
value=
"
tru
e"
/>
<preference
name=
"ShowSplashScreen"
value=
"
fals
e"
/>
<preference
name=
"ShowSplashScreenSpinner"
value=
"false"
/>
<preference
name=
"ShowSplashScreenSpinner"
value=
"false"
/>
<preference
name=
"FadeSplashScreenDuration"
value=
"600"
/>
<preference
name=
"FadeSplashScreenDuration"
value=
"600"
/>
<preference
name=
"SplashScreenBackgroundColor"
value=
"0xFFFFFFFF"
/>
<preference
name=
"SplashScreenBackgroundColor"
value=
"0xFFFFFFFF"
/>
<preference
name=
"SplashScreen"
value=
"screen"
/>
<preference
name=
"SplashScreen"
value=
"screen"
/>
<preference
name=
"SplashMaintainAspectRatio"
value=
"true"
/>
<preference
name=
"SplashMaintainAspectRatio"
value=
"true"
/>
<preference
name=
"
fullscreen"
value=
"tru
e"
/>
<preference
name=
"
SplashShowOnlyFirstTime"
value=
"fals
e"
/>
<feature
name=
"StatusBar"
>
<feature
name=
"StatusBar"
>
<param
name=
"ios-package"
onload=
"true"
value=
"CDVStatusBar"
/>
<param
name=
"ios-package"
onload=
"true"
value=
"CDVStatusBar"
/>
</feature>
</feature>
<preference
name=
"SplashShowOnlyFirstTime"
value=
"false"
/>
</widget>
</widget>
src/app/app.component.ts
View file @
e561b39e
...
@@ -15,6 +15,9 @@ import { TripService } from './services/trip-service';
...
@@ -15,6 +15,9 @@ import { TripService } from './services/trip-service';
templateUrl
:
'app.component.html'
templateUrl
:
'app.component.html'
})
})
export
class
AppComponent
{
export
class
AppComponent
{
public
appStarted
=
false
;
constructor
(
constructor
(
public
LN
:
LocalNotifications
,
public
LN
:
LocalNotifications
,
private
platform
:
Platform
,
private
platform
:
Platform
,
...
@@ -29,6 +32,7 @@ export class AppComponent {
...
@@ -29,6 +32,7 @@ export class AppComponent {
initializeApp
()
{
initializeApp
()
{
this
.
platform
.
ready
().
then
(()
=>
{
this
.
platform
.
ready
().
then
(()
=>
{
this
.
appStarted
=
true
;
this
.
statusBar
.
styleDefault
();
this
.
statusBar
.
styleDefault
();
this
.
splashScreen
.
hide
();
this
.
splashScreen
.
hide
();
...
...
src/app/app.scss
View file @
e561b39e
...
@@ -29,3 +29,19 @@
...
@@ -29,3 +29,19 @@
color
:
var
(
--
ion-color-light
,
#ffffff
)
!
important
;
color
:
var
(
--
ion-color-light
,
#ffffff
)
!
important
;
}
}
}
}
div
.start
{
background
:
#f93129
;
width
:
100vw
;
height
:
100vh
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
transition
:
.5s
;
ion-img
{
width
:
20vw
;
}
ion-spinner
{
transform
:
scale
(
3
);
}
}
\ No newline at end of file
src/app/pages/mainslider/mainslider.page.ts
View file @
e561b39e
...
@@ -18,7 +18,10 @@ export class MainsliderPage implements OnInit {
...
@@ -18,7 +18,10 @@ export class MainsliderPage implements OnInit {
@
ViewChild
(
IonSlides
)
mainSlider
:
IonSlides
;
@
ViewChild
(
IonSlides
)
mainSlider
:
IonSlides
;
slideOpts
=
{
slideOpts
=
{
effect
:
'flip'
effect
:
'fade'
,
fadeEffect
:
{
crossFade
:
true
}
};
};
public
prmMainslider
:
boolean
;
public
prmMainslider
:
boolean
;
...
...
src/index.html
View file @
e561b39e
...
@@ -22,6 +22,10 @@
...
@@ -22,6 +22,10 @@
</head>
</head>
<body>
<body>
<div
class=
"start"
*
ngIf=
"!appStarted"
>
<!-- <ion-img src="./assets/rings.svg"></ion-img> -->
<ion-spinner
name=
"dots"
></ion-spinner>
</div>
<app-root></app-root>
<app-root></app-root>
<script
src=
"https://unpkg.com/leaflet@1.4.0/dist/leaflet.js"
crossorigin=
""
></script>
<script
src=
"https://unpkg.com/leaflet@1.4.0/dist/leaflet.js"
crossorigin=
""
></script>
</body>
</body>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment