mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
16 lines
432 B
Swift
16 lines
432 B
Swift
import SwiftUI
|
|
import UIKit
|
|
|
|
class EeveeSettingsViewController: UIViewController {
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
let hostingController = UIHostingController(rootView: EeveeSettingsView())
|
|
hostingController.view.frame = view.bounds
|
|
|
|
view.addSubview(hostingController.view)
|
|
addChild(hostingController)
|
|
hostingController.didMove(toParent: self)
|
|
}
|
|
}
|