View gist:3b10b4492832d860c614c007434a002e
This file contains 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 { |
View Jumping view with anchors, alignmentGuides and preferenceKeys
This file contains 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 { |
View ContentView.swift
This file contains 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) |