Code Monkey home page Code Monkey logo

openswiftui's Introduction

Hi there ๐Ÿ‘‹

My name is Helbert Gomes, I'm an iOS Engineer based in Waterloo, ON.


  • ๐Ÿ˜Ž Open to contracting opportunities if the project sounds cool.
  • ๐Ÿข Previously at PicPay, ThoughtWorks & Sympla
  • โš™๏ธ Love working with: Swift
  • ๐ŸŒฑ Iโ€™m currently learning Python, C++, and GLSL
  • ๐Ÿ‘ฏ Iโ€™m looking to collaborate on Open Source projects
  • ๐Ÿ’ฌ Ask me about iOS Development and Flight Simulation
  • ๐Ÿ˜„ Pronouns: He | His
  • โšก Fun fact: I'm an ADHD developer

Twitter: Helbert Gomes Linkedin: Helbert Gomes Gmail: Helbert Gomes


Helbert Gomes's GitHub stats

openswiftui's People

Contributors

helbertgs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

openswiftui's Issues

calendar

Author: Helbert Gomes
Review Manager: Helbert Gomes
Status: Merged
Type: Task
Reference: Documentation, Swift Interface
Implementation:

Introduction The current calendar that views should use when handling dates.
Detailed design
import Foundation
import Swift

public struct CalendarKey : EnvironmentKey {
    public static var defaultValue: Calendar {
        .current
    }
}

extension EnvironmentValues {
    /// The current calendar that views should use when handling dates.
    var calendar : Calendar {
        get { self[CalendarKey.self] }
        set { self[CalendarKey.self] = newValue }
    }
}

locale

Author: Helbert Gomes
Review Manager: Helbert Gomes
Status: Merged
Type: Task
Reference: Documentation, Swift Interface
Implementation:

Introduction The current locale that views should use.
Detailed design
public struct LocaleKey : EnvironmentKey {
    public static var defaultValue: Locale {
        .current
    }

    /// Returns a Boolean value indicating whether two values are equal.
    ///
    /// Equality is the inverse of inequality. For any values `a` and `b`,
    /// `a == b` implies that `a != b` is `false`.
    ///
    /// - Parameters:
    ///   - lhs: A value to compare.
    ///   - rhs: Another value to compare.
    public static func _valuesEqual(_ lhs: Locale, _ rhs: Locale) -> Bool {
        lhs == rhs
    }
}

extension EnvironmentValues {
    /// The current locale that views should use.
    var locale: Locale {
        get { self[LocaleKey.self] }
        set { self[LocaleKey.self] = newValue }
    }
}```

</details>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.