initial welcome page and some of the carousel done

This commit is contained in:
talksik
2021-12-11 19:26:32 -08:00
parent 315fe6210b
commit 1bfcbe4b4f
52 changed files with 954 additions and 2 deletions
+31
View File
@@ -0,0 +1,31 @@
//
// MainVoiceChat.swift
// nirvana-ios
//
// Created by Arjun Patel on 12/11/21.
//
import SwiftUI
struct HomeView: View {
var body: some View {
VStack {
HeaderView(isAuth:true)
ChatsCarouselView()
Spacer()
}
.frame(maxWidth:.infinity, maxHeight: .infinity)
.accentColor(NirvanaColors.teal)
.background(NirvanaColors.bgLightGrey)
}
}
struct HomeView_Previews: PreviewProvider {
static var previews: some View {
Group {
HomeView()
}
}
}