32 lines
651 B
Swift
32 lines
651 B
Swift
//
|
|
// GameView.swift
|
|
// Clemens Playground
|
|
//
|
|
// Created by Maximilian Roider on 14.11.25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct GameView: View {
|
|
private let game: Game
|
|
|
|
init(_ game: Game) {
|
|
self.game = game
|
|
}
|
|
|
|
var body: some View {
|
|
// Use this for >= Xcode 26 and remove commentary in "NewWebView.swift"
|
|
// NewWebView(game.url)
|
|
|
|
// Use this for < Xcode 26
|
|
OldWebView(game.url)
|
|
.frame(
|
|
minWidth: 0,
|
|
maxWidth: .infinity,
|
|
minHeight: 0,
|
|
maxHeight: .infinity,
|
|
alignment: .topLeading
|
|
)
|
|
}
|
|
}
|