Update CircleFooterView.swift

This commit is contained in:
talksik
2022-01-03 01:23:04 -08:00
parent 4ec67dcb64
commit 966271cc03
@@ -37,8 +37,10 @@ struct CircleFooterView: View {
.overlay(alignment: .topTrailing) {
// user status
ZStack(alignment: .topTrailing) {
ProgressBarView(progress: self.innerCircleVM.messagesListeningProgress, color: self.myTurn ?? false ? Color.orange : NirvanaColor.dimTeal)
if self.myTurn ?? false {
ProgressBarView(progress: self.innerCircleVM.messagesListeningProgress, color: Color.orange)
.frame(width: 40, height: 40)
}
UserStatusView(status: self.selectedFriend!.userStatus, size: 10)
}