iPages icon indicating copy to clipboard operation
iPages copied to clipboard

iPages doesn't detect window resizing on macOS

Open planecore opened this issue 4 years ago • 0 comments

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")
            }
        }
    }
}

planecore avatar Dec 28 '20 15:12 planecore