1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import SwiftUI
- struct BudgetCategoryCell: View {
-
- @State var category: BudgetCategory
-
- @State var amountText: String
-
- @State var color: Color
- var body: some View {
- HStack {
- Text(category.name)
- Spacer()
- Text(amountText)
- .bold()
- .foregroundColor(color)
- }
- }
- }
- struct BudgetSectionCell: View {
-
- @State var section: BudgetSection
-
- @State var amountText: String
-
- @State var color: Color
- @Environment(\.editMode) var editMode
- var body: some View {
- HStack {
- Text(section.name)
- .textCase(.none)
- Spacer()
- if editMode?.wrappedValue == .inactive {
- Text(amountText)
- .foregroundColor(color)
- }
- }
- .padding(.vertical, 11)
- }
- }
|