Skip to content
View Gujci's full-sized avatar

Block or report Gujci

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. paypal/PayPal-iOS-SDK paypal/PayPal-iOS-SDK Public archive

    Accept credit cards and PayPal in your iOS app

    Objective-C 987 369

  2. Wrapper to bridge realms auto updati... Wrapper to bridge realms auto updating behaviour with SwiftUIs value based immutability requirement. (Extract from https://stackoverflow.com/questions/57160790/index-out-of-bounds-when-using-realm-with-swiftui)
    1
    import RealmSwift
    2
    
                  
    3
    typealias Model = Object & Identifiable
    4
    
                  
    5
    struct ListKey<T: Model>: Identifiable {
  3. Simple snippet how to disable action... Simple snippet how to disable actions in a UITextField
    1
    import UIKit
    2
    
                  
    3
    @IBDesignable
    4
    class CustomTextField: UITextField {
    5
    
                  
  4. SwiftUI wrapper around the STPPaymen... SwiftUI wrapper around the STPPaymentCardTextField from Stripe
    1
    struct StripePaymentCardTextField: UIViewRepresentable {
    2
        
    3
        @Binding var cardParams: STPPaymentMethodCardParams
    4
        @Binding var isValid: Bool
    5