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
// | |
// ContentView.swift | |
// PullToRefresh | |
// | |
// Created by Alexey Belousov on 20.03.2020. | |
// Copyright © 2020 AskJack. All rights reserved. | |
// | |
import SwiftUI | |
import Combine |
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
private let kPreviewBackground = Color(red: 237/255.0, green: 85/255.0, blue: 101/255.0) | |
struct ActivityIndicator: View { | |
@State private var isAnimating: Bool = false | |
var body: some View { | |
GeometryReader { (geometry: GeometryProxy) in | |
ForEach(0..<5) { index in | |
Group { |
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
// | |
// ContentView.swift | |
// StretchyHeader | |
// | |
// Created by Alexey Belousov on 01.08.2019. | |
// Copyright © 2019 JetRockets. All rights reserved. | |
// | |
import SwiftUI |
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
git config --global credential.helper osxkeychain |