Skip to content
View IuriiIaremenko's full-sized avatar
✌️
✌️
Block or Report

Block or report IuriiIaremenko

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Swift Dependency Injection via Prope... Swift Dependency Injection via Property Wrapper
    1
    //
    2
    //  Inject.swift
    3
    //
    4
    //  Created by Iurii Iaremenko on 11.01.2020.
    5
    //
  2. UserDefaults with Property Wrapper UserDefaults with Property Wrapper
    1
    //
    2
    //  UserDefault.swift
    3
    //
    4
    //  Created by Iurii Iaremenko on 24.10.2019.
    5
    //
  3. Logger.swift Logger.swift
    1
    //
    2
    //  Logger.swift
    3
    //
    4
    //  Created by Iurii Iaremenko on 7/1/19.
    5
    //
  4. ConcurrentSafe view Property Wrapper ConcurrentSafe view Property Wrapper
    1
    //
    2
    //  ConcurrentSafe.swift
    3
    //
    4
    //  Created by Iurii Iaremenko on 01.02.2021.
    5
    //
  5. Example of simple and lightweight se... Example of simple and lightweight service for image caching without any 3rd party dependencies. UIKit + SwiftUI usage example
    1
    //
    2
    //  ImageLoader.swift
    3
    //
    4
    //  Created by Iurii Iaremenko on 05.02.2021.
    5
    //
  6. SwiftUI dismiss keyboard on sroll SwiftUI dismiss keyboard on sroll
    1
    #if canImport(UIKit)
    2
    extension View {
    3
        func dismissKeyboard() {
    4
            UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
    5
        }