View Font+Formatting.swift
// | |
// Font+Formatting.swift | |
// | |
// Created by Felix Mau on 12.11.20. | |
// Copyright © 2020 Felix Mau. All rights reserved. | |
// | |
import Foundation | |
import SwiftUI |
View Redux.swift
// | |
// Redux.playground | |
// | |
// Created by Felix Mau on 25.06.20. | |
// Copyright © 2020 Felix Mau. All rights reserved. | |
// | |
import PlaygroundSupport | |
import Combine | |
import SwiftUI |
View Combine-CLLocationManagerDelegate.swift
// | |
// Combine-CLLocationManagerDelegate.playground | |
// | |
// Created by Felix Mau on 30.07.20. | |
// Copyright © 2020 Felix Mau. All rights reserved. | |
// | |
import PlaygroundSupport | |
import Foundation | |
import CoreLocation |
View Combine-PassthroughSubject-CurrentValueSubject.swift
// | |
// Combine-PassthroughSubject-CurrentValueSubject.playground | |
// | |
// Created by Felix Mau on 30.07.20. | |
// Copyright © 2020 Felix Mau. All rights reserved. | |
// | |
import PlaygroundSupport | |
import Combine |
View ScreenOverlayViewModel.swift
// | |
// ScreenOverlayViewModel.swift | |
// | |
// Created by Felix Mau on 12.10.19. | |
// Copyright © 2019 Felix Mau. All rights reserved. | |
// | |
protocol ScreenOverlayViewModelDelegate: AnyObject { | |
func screenOverlayViewModelDidUpdate(alpha: CGFloat) | |
} |
View UIColor+MakeDynamicColor.swift
// | |
// UIColor+MakeDynamicColor.swift | |
// | |
// Created by Felix Mau on 22/09/19. | |
// Copyright © 2019 Felix Mau. All rights reserved. | |
// | |
import Foundation | |
extension UIColor { |
View swiftformat.sh
SWIFTFORMAT="${PODS_ROOT}/SwiftFormat/CommandLineTool/swiftformat" | |
if [ ! -f "$SWIFTFORMAT" ]; then | |
echo "warning: SwiftFormat not installed!" | |
exit 1 | |
fi | |
$SWIFTFORMAT ./ |
View URLSession+Result.swift
// | |
// URLSession+Result.swift | |
// HttpRequestSample | |
// | |
// Created by Felix Mau on 08/16/19. | |
// Copyright © 2019 Felix Mau. All rights reserved. | |
// | |
import Foundation |
View Observable.swift
// | |
// For reusability reasons I've moved the code into a Framework. | |
// https://github.com/fxm90/LightweightObservable | |
// |
View UIView+AnimateAlpha.swift
// | |
// UIView+AnimateAlpha.swift | |
// | |
// Created by Felix Mau on 17/12/18. | |
// Copyright © 2018 Felix Mau. All rights reserved. | |
// | |
import UIKit | |
extension UIView { |
NewerOlder