Login and Home
This commit is contained in:
15
pedi-foods/Sources/PediFoods/Views/Main/CartView.swift
Normal file
15
pedi-foods/Sources/PediFoods/Views/Main/CartView.swift
Normal file
@@ -0,0 +1,15 @@
|
||||
import SwiftUI
|
||||
|
||||
struct CartView: View {
|
||||
var body: some View {
|
||||
VStack(spacing: 16) {
|
||||
Text("Carrinho")
|
||||
.font(AppTypography.heading1)
|
||||
|
||||
Text("Seu carrinho esta vazio")
|
||||
.foregroundStyle(AppColors.secondary)
|
||||
}
|
||||
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||||
.background(AppColors.backgroundLight)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user