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
// | |
// KeywordsMinifier.swift | |
// MinifyASO | |
// | |
// Created by Damjan Dabo on 19.12.22. | |
// | |
import Foundation | |
/// Used for Minify ASO app https://apps.apple.com/us/app/minify-aso-duplicate-keywords/id1660632226 |
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 Foundation | |
import Firebase | |
import FirebaseFirestore | |
import FirebaseFirestoreCombineSwift | |
import Combine | |
extension Query { | |
func snapshotArrayPublisher<T: Decodable>( | |
as type: T.Type, |
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
struct FullScreenBackground<BackgroundView: View>: ViewModifier { | |
@ViewBuilder var backgroundView: () -> BackgroundView | |
func body(content: Content) -> some View { | |
ZStack() { | |
backgroundView().ignoresSafeArea() | |
content | |
} | |
} |
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
// | |
// Feel free to use this code in your project. | |
// Inspired by SO answer https://stackoverflow.com/a/65743126 | |
// Uses DeviceKit as a dependency https://github.com/devicekit/DeviceKit | |
// | |
import Foundation | |
import MessageUI | |
import DeviceKit |