Skip to content

Instantly share code, notes, and snippets.

@balazserd
balazserd / ContentView.swift
Last active May 6, 2020 17:15
Custom ActivityIndicator in SwiftUI
import SwiftUI
import Combine
struct ContentView: View {
@State private var isLoading: Bool = false
var body: some View {
VStack {
Spacer()
ActivityIndicator(isSpinning: self.$isLoading)
//
// PlaygroundView.swift
//
// Created by Balazs Erdesz on 2021. 03. 31..
//
import SwiftUI
struct PlaygroundView: View {
var body: some View {
//
// TransactionView.swift
//
// Created by Balazs Erdesz on 2021. 02. 23..
//
import SwiftUI
import Combine
struct TransactionView: View {