Files
eden/src/ios/ContentView.swift
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
471 B
Swift
Raw Normal View History

2026-03-26 17:18:30 +00:00
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: Copyright 2024 Pomelo, Stossy11
// SPDX-License-Identifier: GPL-3.0-or-later
import SwiftUI
2026-03-31 01:53:04 +00:00
import AppUI
2026-03-26 17:18:30 +00:00
struct ContentView: View {
2026-03-31 01:53:04 +00:00
@State var core = Core(games: [], root: FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0])
2026-03-26 17:18:30 +00:00
var body: some View {
2026-03-31 01:53:04 +00:00
HomeView(core: core).onAppear() {
}
2026-03-26 17:18:30 +00:00
}
}