We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31d3fca commit ae2b096Copy full SHA for ae2b096
1 file changed
src/pages/messages/messages.html
@@ -23,3 +23,19 @@
23
</div>
24
</ion-scroll>
25
</ion-content>
26
+
27
+<ion-footer>
28
+ <ion-toolbar color="whatsapp" class="messages-page-footer" position="bottom">
29
+ <ion-input [(ngModel)]="message" (keypress)="onInputKeypress($event)" class="message-editor" placeholder="Type a message"></ion-input>
30
31
+ <ion-buttons end>
32
+ <button ion-button icon-only *ngIf="message" class="message-editor-button" (click)="sendTextMessage()">
33
+ <ion-icon name="send"></ion-icon>
34
+ </button>
35
36
+ <button ion-button icon-only *ngIf="!message" class="message-editor-button">
37
+ <ion-icon name="mic"></ion-icon>
38
39
+ </ion-buttons>
40
+ </ion-toolbar>
41
+</ion-footer>
0 commit comments