Hello Guys,
is there an easy way so make the Chat part in my App hiding by swiping?
Basicly, I want to swipe on the Chat from top to bottom on the <ion-row class="chat">
element to hide the Chat and then, when I swipe on the <ion-row class="livestream">
element bottom to top to show the Chat.
Page
<ion-content *ngFor="let data of data">
<ion-grid>
<ion-row class="livestream">
<iframe class="livestream" [src]="data.video | safeUrl"
frameborder="0" allowfullscreen></iframe>
</ion-row>
<ion-row class="chat">
<iframe class="livechat" [src]="data.chat | safeUrl"
frameborder="0" allowfullscreen></iframe>
</ion-row>
</ion-grid>
</ion-content>
I can program that myself to work… but there must a ready to use class, event etc. or not? I don’t want to revent the wheel
Cheers,
Ben