Skip to content
View juliensagot's full-sized avatar

Block or report juliensagot

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. uikit-blur-view uikit-blur-view Public

    High-performance blur effect for UIKit, similar to SwiftUI’s blur modifier.

    Swift 26 1

  2. SwiftUI variable blur view SwiftUI variable blur view
    1
    import Foundation
    2
    import SwiftUI
    3
    import UIKit
    4
    
                  
    5
    extension UIBlurEffect {
  3. Custom ButtonStyle boilerplate that ... Custom ButtonStyle boilerplate that doesn't take ages to update its `isPressed` state when using spring animations
    1
    struct ResponsiveButtonStyle: PrimitiveButtonStyle {
    2
      // Use this instead of `Configuration.isPressed`.
    3
      @State private var isPressed = false
    4
    
                  
    5
      func makeBody(configuration: Configuration) -> some View {
  4. ConditionalEnvironmentOverlay ConditionalEnvironmentOverlay
    1
    private struct ConditionalEnvironmentOverlay<Value: Equatable, OverlayContent: View>: ViewModifier {
    2
      @Environment(\.self) private var environmentValues
    3
      
    4
      private let keyPath: KeyPath<EnvironmentValues, Value>
    5
      private let value: Value