Android design fix
Showing
| ... | ... | @@ -38,11 +38,11 @@ |
| "@types/googlemaps": "^3.39.2", | ||
| "agm-direction": "^0.7.9", | ||
| "call-number": "^1.0.1", | ||
| "cordova-android": "^8.1.0", | ||
| "cordova-android": "8.1.0", | ||
| "cordova-plugin-device": "^2.0.3", | ||
| "cordova-plugin-geolocation": "^4.0.2", | ||
| "cordova-plugin-googleplus": "^8.4.0", | ||
| "cordova-plugin-ionic-keyboard": "2.2.0", | ||
| "cordova-plugin-ionic-keyboard": "^2.2.0", | ||
| "cordova-plugin-ionic-webview": "^4.1.3", | ||
| "cordova-plugin-nativegeocoder": "^3.2.2", | ||
| "cordova-plugin-navigationbar": "^1.0.31", | ||
| ... | ... |
| <div class="nav_header"> | ||
| <ion-header> | ||
| <div class="nav_header"> | ||
| <ion-menu-toggle> | ||
| <button class="nav_btn nav_menu floatLeft"></button> | ||
| </ion-menu-toggle> | ||
| ... | ... | @@ -6,7 +7,9 @@ |
| <img src="../../assets/Group [email protected]" /> | ||
| </div> | ||
| <div class="clear"></div> | ||
| </div> | ||
| </div> | ||
| </ion-header> | ||
| <ion-content> | ||
| <div class="profile_wrapper" *ngIf="loggedUser"> | ||
| ... | ... | @@ -27,8 +30,8 @@ |
| <div class="account_wrapper"> | ||
| <div class="account_header"> | ||
| <h5 class="floatLeft">ACCOUNT INFORMATION</h5> | ||
| <span class="floatRight" (click)="goToPage('changedetails', user && user)"><img src="../../assets/edit.png" | ||
| /></span> | ||
| <span class="floatRight" (click)="goToPage('changedetails', user && user)"><img | ||
| src="../../assets/edit.png" /></span> | ||
| <div class="clear"></div> | ||
| </div> | ||
| <div class="row"> | ||
| ... | ... | @@ -40,11 +43,8 @@ |
| </ion-col> | ||
| <ion-col class="textRight p0"> | ||
| <h6>{{loggedUser.phone}}</h6> | ||
| <span class="ar-span" *ngIf="loggedUser.phoneVerified == true">Verified</span | ||
| > | ||
| <span class="ar-span" *ngIf="loggedUser.phoneVerified == false" | ||
| >Not Verified yet</span | ||
| > | ||
| <span class="ar-span" *ngIf="loggedUser.phoneVerified == true">Verified</span> | ||
| <span class="ar-span" *ngIf="loggedUser.phoneVerified == false">Not Verified yet</span> | ||
| </ion-col> | ||
| </ion-row> | ||
| </div> | ||
| ... | ... | @@ -57,12 +57,8 @@ |
| </ion-col> | ||
| <ion-col class="textRight p0"> | ||
| <h6>{{loggedUser.emailId}}</h6> | ||
| <span class="ar-span" *ngIf="loggedUser.emailVerified == true" | ||
| >Verified</span | ||
| > | ||
| <span class="ar-span" *ngIf="loggedUser.emailVerified == false" | ||
| >Not Verified yet</span | ||
| > | ||
| <span class="ar-span" *ngIf="loggedUser.emailVerified == true">Verified</span> | ||
| <span class="ar-span" *ngIf="loggedUser.emailVerified == false">Not Verified yet</span> | ||
| </ion-col> | ||
| </ion-row> | ||
| </div> | ||
| ... | ... |
Please
register
or
sign in
to comment