Update InnerCircleView.swift

This commit is contained in:
talksik
2021-12-17 04:03:26 -08:00
parent f4df53d64f
commit caf023ee48
@@ -103,7 +103,7 @@ struct InnerCircleView: View {
if self.selectedUserIndex != nil { if self.selectedUserIndex != nil {
footerNavigation footerNavigation
.transition(AnyTransition.move(edge: Edge.bottom)) .transition(AnyTransition.move(edge: Edge.bottom))
.animation(Animation.interactiveSpring()) .animation(Animation.default)
} }
} }
.onAppear() { .onAppear() {
@@ -136,10 +136,11 @@ struct InnerCircleView: View {
VStack (alignment: .leading) { VStack (alignment: .leading) {
Text("Sarth Shah") Text("Sarth Shah")
.font(.footnote) .font(.footnote)
Text("sent 20 minutes") .foregroundColor(NirvanaColor.light)
Text("sent 20 minutes ago")
.font(.caption) .font(.caption)
.foregroundColor(.gray)
} }
.foregroundColor(NirvanaColor.light)
Spacer() Spacer()
} }
@@ -148,6 +149,7 @@ struct InnerCircleView: View {
.clipShape(RoundedRectangle(cornerRadius: 30, style: .continuous)) .clipShape(RoundedRectangle(cornerRadius: 30, style: .continuous))
.shadow(color: Color.black.opacity(0.25), radius: 30, x: 0, y: 20) .shadow(color: Color.black.opacity(0.25), radius: 30, x: 0, y: 20)
} }
FooterControlsView() FooterControlsView()
} }
.padding() .padding()