|
@@ -5,7 +5,7 @@ import { addIcons } from 'ionicons';
|
|
|
import { documentText,calendar,chatboxEllipses,informationCircle,settings,create,
|
|
|
gift,walk,notifications,document,call,shareSocial
|
|
|
} from 'ionicons/icons';
|
|
|
-
|
|
|
+import { Router } from '@angular/router';
|
|
|
@Component({
|
|
|
selector: 'app-tab4',
|
|
|
templateUrl: 'tab4.page.html',
|
|
@@ -14,19 +14,22 @@ import { documentText,calendar,chatboxEllipses,informationCircle,settings,create
|
|
|
imports: [IonHeader,IonContent,IonToolbar, IonTitle, ExploreContainerComponent,IonCard,
|
|
|
IonCardContent,IonCardHeader,IonCardSubtitle,IonCardTitle,
|
|
|
IonIcon,IonNote,IonThumbnail,IonGrid,IonRow,IonCol,IonButton,
|
|
|
- IonList, IonItem, IonLabel, IonAvatar],
|
|
|
+ IonList, IonItem, IonLabel, IonAvatar]
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
export class Tab4Page {
|
|
|
+ Router: any;
|
|
|
|
|
|
- constructor() {
|
|
|
+ constructor(private router: Router) {
|
|
|
addIcons({ documentText,calendar,chatboxEllipses,informationCircle,settings,create,
|
|
|
gift,walk,notifications,document,call,shareSocial
|
|
|
});
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ gotoFeedback(){
|
|
|
+ this.router.navigate(['/tabs/Feedback'])
|
|
|
+ }
|
|
|
|
|
|
}
|