updateAll

This commit is contained in:
ivan gomes
2021-11-30 12:30:58 +01:00
parent b2e55317b5
commit 49c0aeae95
8 changed files with 72 additions and 15 deletions
@@ -3,6 +3,7 @@ import { IonSlides, ModalController, NavParams } from '@ionic/angular';
import { ImageCroppedEvent } from 'ngx-image-cropper';
import { PublicationsService } from 'src/app/services/publications.service';
import { GroupIconsPage } from '../group-icons/group-icons.page';
import { Share } from '@capacitor/share';
@Component({
selector: 'app-preview-camera',
@@ -102,5 +103,18 @@ async getIconGallery(){
}
}
async getIconShare(){
await Share.share({
title: 'See cool stuff',
text: 'Really awesome thing you need to see right meow',
url: this.image,
dialogTitle: 'Share with buddies',
});
}
}