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

Block or report antonmartinsson

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

Hi, I'm Anton ๐Ÿ‘‹

I'm a Software Engineer who spends most of his days in the Apple development ecosystem. Occasionally, when I have the time and inspiration to do so, I commit a thing or two to my personal repos here on Github. Feel free to browse and try out my Swift Package GaugeKit, visit my website or check out the How to Play video for PlรฅtNiklas, perhaps the world's first simultaneous AR + VR game I was part of creating during my time at KTH Royal Institute of Technology.

Oh, you're here for my app, Cryptoverview? Makes sense! You already missed the link reading this though. Luckily it's still over there if you need it. ๐Ÿ‘ˆ

What's that? You're saying you don't care about development at all?
Why not watch my ten year old Youtube series where I walk to Mordor? No really, I'm serious. ๐ŸŒ‹

Get in touch ๐Ÿ‘‡

Until next time โœŒ๏ธ

Pinned

  1. GaugeKit GaugeKit Public

    GaugeKit is a free-to-use, open source Swift Package. It allows for easy creation of gauges not unlike the circular graphics used in many complications on the Apple Watch. โŒš๏ธ

    Swift 25 7

  2. EnumeratedForEach EnumeratedForEach
    1
    import SwiftUI
    2
    
                  
    3
    /// An extension of ForEach that enables lookup of an array offset parameter in its ViewBuilder closure, in addition to the standard element returned.
    4
    extension ForEach where Data: RandomAccessCollection, Data.Element: Hashable, ID == Data.Element, Content: View {
    5
        init(_ values: Data?, @ViewBuilder content: @escaping (Data.Index, Data.Element) -> Content) {