mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Disable useless buttons in call view
This commit is contained in:
parent
12f9829331
commit
aa18757a48
1 changed files with 12 additions and 8 deletions
|
|
@ -152,12 +152,13 @@ struct CallView: View {
|
|||
Image("phone-transfer")
|
||||
.renderingMode(.template)
|
||||
.resizable()
|
||||
.foregroundStyle(.white)
|
||||
.foregroundStyle(Color.gray500)
|
||||
.frame(width: 32, height: 32)
|
||||
}
|
||||
.frame(width: 60, height: 60)
|
||||
.background(Color.gray500)
|
||||
.background(Color.gray600)
|
||||
.cornerRadius(40)
|
||||
.disabled(true)
|
||||
|
||||
Text("Transfer")
|
||||
.foregroundStyle(.white)
|
||||
|
|
@ -171,12 +172,13 @@ struct CallView: View {
|
|||
Image("phone-plus")
|
||||
.renderingMode(.template)
|
||||
.resizable()
|
||||
.foregroundStyle(.white)
|
||||
.foregroundStyle(Color.gray500)
|
||||
.frame(width: 32, height: 32)
|
||||
}
|
||||
.frame(width: 60, height: 60)
|
||||
.background(Color.gray500)
|
||||
.background(Color.gray600)
|
||||
.cornerRadius(40)
|
||||
.disabled(true)
|
||||
|
||||
Text("New call")
|
||||
.foregroundStyle(.white)
|
||||
|
|
@ -190,12 +192,13 @@ struct CallView: View {
|
|||
Image("phone-list")
|
||||
.renderingMode(.template)
|
||||
.resizable()
|
||||
.foregroundStyle(.white)
|
||||
.foregroundStyle(Color.gray500)
|
||||
.frame(width: 32, height: 32)
|
||||
}
|
||||
.frame(width: 60, height: 60)
|
||||
.background(Color.gray500)
|
||||
.background(Color.gray600)
|
||||
.cornerRadius(40)
|
||||
.disabled(true)
|
||||
|
||||
Text("Call list")
|
||||
.foregroundStyle(.white)
|
||||
|
|
@ -209,12 +212,13 @@ struct CallView: View {
|
|||
Image("dialer")
|
||||
.renderingMode(.template)
|
||||
.resizable()
|
||||
.foregroundStyle(.white)
|
||||
.foregroundStyle(Color.gray500)
|
||||
.frame(width: 32, height: 32)
|
||||
}
|
||||
.frame(width: 60, height: 60)
|
||||
.background(Color.gray500)
|
||||
.background(Color.gray600)
|
||||
.cornerRadius(40)
|
||||
.disabled(true)
|
||||
|
||||
Text("Dialer")
|
||||
.foregroundStyle(.white)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue