Skip to content
View DineshKachhot's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report DineshKachhot

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. Flutter Time ago calculator Flutter Time ago calculator
    1
      static String timeAgoSinceDate(String dateString, {bool numericDates = true}) {
    2
        DateTime date = DateTime.parse(dateString);
    3
        final date2 = DateTime.now();
    4
        final difference = date2.difference(date);
    5
    
                  
  2. flutter_background_location_update flutter_background_location_update Public

    Kotlin 3 1

  3. InstagramUI_SwiftUI InstagramUI_SwiftUI Public

    Instagram like UI using SwiftUI

    1

  4. Audio/Video Duration formate in Swif... Audio/Video Duration formate in Swift 4.2
    1
    import Foundation
    2
    
                  
    3
    extension TimeInterval {
    4
        struct DateComponents {
    5
            static let formatterPositional: DateComponentsFormatter = {
  5. Array extension to return the unique... Array extension to return the unique list of objects based on a given key.
    1
    extension Array {
    2
        func unique<T:Hashable>(by: ((Element) -> (T)))  -> [Element] {
    3
            var set = Set<T>() //Keep unique list in a Set for fast retrieval
    4
            var orderedArray = [Element]() //Keeping the unique list of elements but ordered
    5
            for value in self {