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
// | |
// PlaygroundView.swift | |
// | |
// Created by Balazs Erdesz on 2021. 03. 31.. | |
// | |
import SwiftUI | |
struct PlaygroundView: View { | |
var body: some View { |
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
// | |
// TransactionView.swift | |
// | |
// Created by Balazs Erdesz on 2021. 02. 23.. | |
// | |
import SwiftUI | |
import Combine | |
struct TransactionView: View { |
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 | |
import Combine | |
struct ContentView: View { | |
@State private var isLoading: Bool = false | |
var body: some View { | |
VStack { | |
Spacer() | |
ActivityIndicator(isSpinning: self.$isLoading) |