
Goal
Approved Shoes is the first app designed to verify whether a shoe model is approved for specific athletics events. It helps officials, athletes, and teams easily check shoe approvals on-site, eliminating the need to browse multiple websites. Users can search through a list or enter the shoe name manually. The shoe database is updated regularly; however, please note that updates in the app may take some time to synchronize, as they depend on the latest database information.
Algorithm
Since World Athletics does not provide an official API to access the data, the application works through the use of a static database, which can be updated accordingly.
Beta
This presentation features a beta version of the app, currently accessible only to the creator and selected testers. Any logos or trademarks shown in this version are used solely for testing purposes and will not appear in the final release unless explicit authorization is obtained from the respective rights holders.
import SwiftUI
@main
struct ApprovedShoesApp: App {
@StateObject private var viewModel = ApprovedShoesViewModel()
@State private var isLoading: Bool = true
var body: some Scene {
WindowGroup {
NavigationView {
ContentView()
}
}
}
}


