This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| struct BankindDashboard: View { | |
| @State private var balance: Double = 3700.75 | |
| var body: some View { | |
| VStack { | |
| // Account Card | |
| VStack { | |
| // Account holder header | |
| HStack { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| // MARK: - BankingSnippet View | |
| struct BankingSnippet: View { | |
| var body: some View { | |
| VStack { | |
| // Header | |
| header(amount: 16500) | |
| // Widget 1 | |
| bankingWidget() |