in my edit profile page(different page), i can change the profile pic and it should reflect the same in main profile page(another page).these two pages are different.
<ion-item lines="none">
<ion-avatar class="ion-align-self-left" id="pic" (click)="change()">
<img src="{{myphoto}}">
</ion-avatar>
</ion-item>
export app{
myphoto: any;
}
constructor(private camera: Camera,private statusBar: StatusBar) {
this.myphoto = '/assets/img/DP.svg';
this.statusBar.backgroundColorByHexString('#ffffff');
}