Skip to content
View abhi21git's full-sized avatar
:octocat:
:octocat:

Block or report abhi21git

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

πŸ’« About Me:

  • ο£Ώ iOS Software Development Engineer
  • πŸ‘¨πŸ»β€πŸ’» Working at Apple, previously worked for Eternal (formaly known as Zomato) and Gojek
  • πŸ’¬ Ask about any random fact (iOS or in general)
  • πŸ“± Would love to collaborate on iOS projects
  • πŸ”‹ Learning new frameworks and SwiftUI

🌐 Socials:

Stack Overflow Abhishek Maurya StackOverflow LinkedIn Twitter Reddit Instagram Facebook Twitch

πŸ’» Tech Stack:

Swift Firebase SQLite Figma Jira

πŸ“Š GitHub Stats:

πŸ† GitHub Trophies

πŸ” Top Contributed Repo

✍️ Random Dev Quote

πŸ˜‚ Random Dev Meme


Pinned Loading

  1. Swift cURL Printer Swift cURL Printer
    1
    //
    2
    //  ExtensionURLRequest.swift
    3
    //
    4
    //  Created by Abhishek Maurya on 16/07/20.
    5
    //  Copyright Β© 2020. All rights reserved.
  2. Genrics+CellReuse.swift Genrics+CellReuse.swift
    1
    import UIKit
    2
    
                  
    3
    // Confirm this to your cell/header if using Prototype cell
    4
    public protocol ReusableView: AnyObject {
    5
        static var defaultReuseIdentifier: String { get }
  3. An animatable label with push text a... An animatable label with push text animation which can either be used from storyboard or programatically.
    1
    //
    2
    //  UIAnimatableLabel.swift
    3
    //
    4
    //  Created by Abhishek Maurya on 04/04/23.
    5
    //
  4. GradientTextLabel.swift GradientTextLabel.swift
    1
    class GradientTextLabel: UILabel {
    2
    	var gradientColors: [CGColor] = [UIColor.orangeRed.cgColor, UIColor.brightRed.cgColor, UIColor.warmPurple.cgColor, UIColor.darkishBlue.cgColor]
    3
    	var locations: [CGFloat]? = [0.0, 0.25, 0.5, 0.75]
    4
    	
    5
    	override func drawText(in rect: CGRect) {
  5. This code replicated iOS 18 lock scr... This code replicated iOS 18 lock screen clock text change animation.
    1
    extension View {
    2
        @ViewBuilder
    3
        func numericTransition(_ value: Double) -> some View {
    4
            if #available(iOS 17.0, *) {
    5
                contentTransition(.numericText(value: value))
  6. A simple debounce handler for swift A simple debounce handler for swift
    1
    //
    2
    //  DispatchQueue+Debounce.swift
    3
    //
    4
    //  Created by Abhishek Maurya on 22/05/24.
    5
    //