You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
420 B
17 lines
420 B
//
|
|
// Created by Marco Schmickler on 26.06.22.
|
|
// Copyright (c) 2022 Marco Schmickler. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
import SwiftUI
|
|
|
|
class SelfSizingHostingController<Content>: UIHostingController<Content> where Content: View {
|
|
|
|
override func viewDidLayoutSubviews() {
|
|
super.viewDidLayoutSubviews()
|
|
let s = UIScreen.main.bounds.size
|
|
self.view.frame.size = s
|
|
}
|
|
}
|