iPages
iPages copied to clipboard
iPages doesn't detect window resizing on macOS
When I try to resize windows on macOS, iPages doesn't change its width/height to match the new window size.
Sample code:
import SwiftUI
import iPages
struct ExampleApp: App {
@SceneBuilder var body: some Scene {
WindowGroup {
iPages {
Text("Hello World")
Text("Hello World")
Text("Hello World")
Text("Hello World")
}
}
}
}