Skip to content

david-why/scoreboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ScoreBoard icon

ScoreBoard

ScoreBoard is a clean and sleek basketball scoreboard app. It is designed so that you can directly cast it from an iPad to a large TV screen at a basketball game.

See a video demo

Installation

Try it out on Testflight here! (if it doesn't work, then it's because Apple is still approving my build)

Alternatively, you can open this project in Xcode directly and run it from there.

Technical details

This project uses SwiftUI... and it's kind of it!

One interesting detail (I guess) is this extension, which I like so much that I use it in virtually every SwiftUI project :p

extension View {
    @ViewBuilder
    func `if`(_ condition: @autoclosure () -> Bool, transform: (Self) -> some View) -> some View {
        if condition() {
            transform(self)
        } else {
            self
        }
    }
}

About

A basketball scoreboard iOS app, featuring a sleek design and intuitive user interface

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published