nice color background based on isrecording or not

This commit is contained in:
talksik
2021-12-22 18:01:06 -08:00
parent 33a4241780
commit f21faa38d5
4 changed files with 10 additions and 5 deletions
@@ -28,7 +28,7 @@ struct InnerCircleView: View {
var body: some View {
ZStack {
// background
WavesGlassBackgroundView()
WavesGlassBackgroundView(isRecording: self.innerCircleVM.isRecording)
// content
CircleGridView(selectedFriendIndex: self.$selectedFriendIndex)
@@ -37,7 +37,7 @@ struct InnerCircleView: View {
// header
VStack(alignment: .leading) {
CircleNavigationView(sheetView: self.$sheetView)
CircleNavigationView(sheetView: self.$sheetView).environmentObject(innerCircleVM)
Spacer()
}