Skip to content
View Adrimi's full-sized avatar

Block or report Adrimi

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 Loading

  1. EssentialFeed EssentialFeed Public

    This is a project created (almost) word by word as the example project on academy.essentialdeveloper.com

    Swift

  2. Map-Distance Map-Distance Public

    Sample app for obtaining distance from one point of the map to another

    Swift

  3. A type-erased equatable value. A type-erased equatable value.
    1
    /// A type-erased equatable value.
    2
    ///
    3
    /// The `AnyEquatable` type forwards the equality comparison to
    4
    /// an underlying equatable value, hiding the type of the wrapped value.
    5
    ///
  4. Square image clipped in the middle (... Square image clipped in the middle (top and bottom), with UIKit and SwiftUI support
    1
    import Combine
    2
    import SwiftUI
    3
    
    
    4
    public struct SquareImageView: View {
    5
        var uiImagePublisher: AnyPublisher<UIImage?, Never>?
  5. Animated Hamburger menu Animated Hamburger menu
    1
    import SwiftUI
    2
    
    
    3
    enum HamburgerMenuViewConstants {
    4
        static let offsetRatio: CGFloat = 0.7
    5