mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
Fix "Add Participant" button on call screen
This commit is contained in:
parent
ad736c8fc5
commit
e2432683ae
1 changed files with 4 additions and 0 deletions
|
|
@ -188,6 +188,7 @@ struct CallView: View {
|
|||
CallsListFragment(callViewModel: callViewModel, isShowCallsListFragment: $isShowCallsListFragment)
|
||||
.zIndex(4)
|
||||
.transition(.move(edge: .bottom))
|
||||
.padding(.bottom, geo.safeAreaInsets.top + geo.safeAreaInsets.bottom)
|
||||
}
|
||||
|
||||
if isShowParticipantsListFragment {
|
||||
|
|
@ -197,6 +198,7 @@ struct CallView: View {
|
|||
.onAppear {
|
||||
addParticipantsViewModel = AddParticipantsViewModel()
|
||||
}
|
||||
.padding(.bottom, geo.safeAreaInsets.top + geo.safeAreaInsets.bottom)
|
||||
}
|
||||
|
||||
if callViewModel.zrtpPopupDisplayed == true {
|
||||
|
|
@ -207,9 +209,11 @@ struct CallView: View {
|
|||
&& buttonSize != 45 {
|
||||
ZRTPPopup(callViewModel: callViewModel, resizeView: 1.5)
|
||||
.background(.black.opacity(0.65))
|
||||
.padding(.bottom, geo.safeAreaInsets.top + geo.safeAreaInsets.bottom)
|
||||
} else {
|
||||
ZRTPPopup(callViewModel: callViewModel, resizeView: buttonSize == 45 ? 1.5 : 1)
|
||||
.background(.black.opacity(0.65))
|
||||
.padding(.bottom, geo.safeAreaInsets.top + geo.safeAreaInsets.bottom)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue