Skip to content
View dkulundzic's full-sized avatar
  • The World

Block or report dkulundzic

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. ios-template ios-template Public template

    A starting point for a CleanSwift inspired iOS project.

    Swift 1

  2. github-viewer github-viewer Public

    Undabot assignment.

    Swift

  3. time-tracker time-tracker Public

    Swift

  4. An abstraction for a predefined set ... An abstraction for a predefined set of functionality, aimed to be ran once, at app startup
    1
    func application(
    2
        _ application: UIApplication,
    3
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
    4
      ) -> Bool {
    5
        StartupProcessService()
  5. Protocol based mechanism for easily ... Protocol based mechanism for easily and uniformly displaying a custom messaging UI element
    1
    protocol MessageViewPresentable: AnyObject {
    2
      var messageView: MessageView? { get set }
    3
      var hostView: UIView { get }
    4
      func showMessageView(using context: MessageView.Context, action: Action?)
    5
      func hideMessageView(animated: Bool)
  6. A testable, Promise based example ne... A testable, Promise based example network service
    1
    public protocol ChatNetworkService {
    2
      func loadMessages(bookingId: String) -> Promise<[ChatMessage]>
    3
      func sendMessage(_ message: String, bookingId: String) -> Promise<ChatMessage>
    4
    }
    5