Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I′m building a SwiftUI Mac App. It′s main window shall be resizable as normal in MacOS.
With a Button I want to resize the window programaticly.
That works fine with the code below.
After the programatic resizing the window cannot be resized anymore by the user(via mouse).
How can this be accomplished?

struct MainView1: View {

  @State var width : CGFloat = .infinity
  var body: some View {
    SomeView(width: $width)
      .background(Color.red)
      .frame(width: width)
  }
}


struct SomeView: View {

  @Binding var width : CGFloat

  var body: some View {

    GeometryReader{geometry in
      VStack{
        Text("geometry width:(geometry.size.width)")
        Text("geometry hight:(geometry.size.height)")
        Button("Set width = 200"){width = 200}
        Text("width:(width)")
      }//
      .background(Color.yellow)
      //.frame(width: geometry.size.height, height: geometry.size.height)
    }
  }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...