feat: Android APP V1 - Experimental Alpha

This commit is contained in:
2026-06-05 07:40:25 +02:00
parent bf4e6891d1
commit 9a1305f976
179 changed files with 8031 additions and 120 deletions

View File

@@ -12,7 +12,8 @@ import {
lucidePhone,
lucidePhoneOff,
lucideVideo,
lucideVideoOff
lucideVideoOff,
lucideVolume2
} from '@ng-icons/lucide';
@Component({
@@ -28,7 +29,8 @@ import {
lucidePhone,
lucidePhoneOff,
lucideVideo,
lucideVideoOff
lucideVideoOff,
lucideVolume2
})
],
templateUrl: './private-call-controls.component.html'
@@ -38,10 +40,13 @@ export class PrivateCallControlsComponent {
readonly muted = input.required<boolean>();
readonly cameraEnabled = input.required<boolean>();
readonly screenSharing = input.required<boolean>();
readonly showSpeakerphoneButton = input(false);
readonly speakerphoneEnabled = input(false);
readonly joinRequested = output<void>();
readonly muteToggled = output<void>();
readonly cameraToggled = output<void>();
readonly screenShareToggled = output<void>();
readonly leaveRequested = output<void>();
readonly joinRequested = output();
readonly muteToggled = output();
readonly cameraToggled = output();
readonly screenShareToggled = output();
readonly speakerphoneToggled = output();
readonly leaveRequested = output();
}