small improvements and allowing user to delete

This commit is contained in:
talksik
2021-12-25 04:12:25 -08:00
parent 6ad872d793
commit 781547a35b
4 changed files with 18 additions and 9 deletions
@@ -80,13 +80,9 @@ struct CircleGridView: View {
// check if the last message in the conversation between me and my friend was me talking or him
if self.haveNewMessageFromFriend(friendDbId: friendId) { // him talking
Image(systemName: "wave.3.right.circle.fill")
Image(systemName: "arrow.down.left.circle.fill")
.foregroundColor(Color.orange)
.font(.title2)
} else {
Image(systemName: "wave.3.right.circle.fill")
.foregroundColor(NirvanaColor.dimTeal)
.font(.title2)
}
//
Image(self.authSessionStore.relevantUsersDict[friendId]?.avatar ?? Avatars.avatarSystemNames[0])
@@ -164,8 +160,6 @@ struct CircleGridView: View {
.foregroundColor(Color.orange)
.font(.title)
Text("\(activeFriends.count)")
Circle()
.foregroundColor(Color.orange.opacity(0.4))
.blur(radius: 5)