| 123456789101112131415161718192021222324252627 |
- //
- // CartView.swift
- // SUIExamples
- //
- // Created by Pavel Yurchenko on 17.08.2024.
- //
- import SwiftUI
- struct CartView: View {
- @Environment(CartVM.self) private var vm
- var body: some View {
- VStack {
- Text("Cart")
- Spacer()
- Button("Products") {
- vm.output.onProducts?()
- }
- }
- .padding()
- }
- }
- #Preview {
- ProductsBuilder().build(with: .init())
- }
|