Skip to content
View LucasAbijmil's full-sized avatar
🚀
🚀
Block or Report

Block or report LucasAbijmil

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
LucasAbijmil/README.md

Hi there 👋

I'm Lucas, a 26 year old self-taught Swift & SwiftUI developer.

Pinned

  1. LazyScrollView – Before iOS 16.4 oth... LazyScrollView – Before iOS 16.4 otherwise use the `scrollBounceBehavior` modifier
    1
    struct LazyScrollView<Content: View>: View {
    2
    
                  
    3
      @State private var fitsVertically = false
    4
      @State private var fitsHorizontally = false
    5
      private let content: Content
  2. Detect if the user scrolls in SwiftUI Detect if the user scrolls in SwiftUI
    1
    struct ScrollViewDelegate<Content: View>: View {
    2
    
                  
    3
      @State private var verticalScrollTimer: Timer?
    4
      @State private var horizontalScrollTimer: Timer?
    5
      @ViewBuilder private let content: Content