PyQt6 – Elements with QVBoxLayout not scaling well after expanding the window

I have the following method which establishes a QVBoxLayout with several configuration widgets:

def ConfigureNewGraph(self):
        confWnd = QWidget()
        confWndLayout = QVBoxLayout()
        confWnd.setLayout(confWndLayout)

        xAxisLabel = QLineEdit()
        xAxisRange = QLineEdit()
        yAxisLabel = QLineEdit()
        yAxisRange = QLineEdit()
        graphTitle = QLineEdit()
        
        #Group box as selector for the input type: via file or via port. 
        dataStreamBox = QGroupBox("Input type")
        serialPortCheck = QCheckBox("Serial port")
        textFileCheck = QCheckBox("File")
        dataStreamLayout = QFormLayout()
        dataStreamLayout.addWidget(serialPortCheck)
        dataStreamLayout.addWidget(textFileCheck)
        dataStreamBox.setLayout(dataStreamLayout)
        confWndLayout.addWidget(dataStreamBox)
        
        #Serial port input handler
        serialConfig = SerialConfig() 
        dataStreamLayout.addWidget(serialConfig.serialBox)
         
        #File input handler
        fileConfig = FileConfig()
        dataStreamLayout.addWidget(fileConfig.fileBox)
        
        #Widget to configure plot info
        plotInfoBox = QGroupBox("Plot information")
        plotInfoLayout = QFormLayout()
        plotInfoLayout.addRow("Plot title: ",graphTitle)
        plotInfoLayout.addRow("x axis label: ",xAxisLabel)
        plotInfoLayout.addRow("x axis range:",xAxisRange)
        plotInfoLayout.addRow("y axis label: ",yAxisLabel)
        plotInfoLayout.addRow("y axis range:",yAxisRange)
        plotInfoBox.setLayout(plotInfoLayout)
        
        confWndLayout.addWidget(plotInfoBox)
        
        serialPortCheck.toggled.connect(lambda checked: serialConfig.serialBox.setVisible(checked))#Shows the portBox 
        serialConfig.connectButton.clicked.connect(lambda: sc.ConnectToPort(serialConfig.baudRateInput.text(),serialConfig.portInput.text(),serialConfig.dataSizeInput.text(),serialConfig.connectionState))
        
        textFileCheck.toggled.connect(lambda checked: fileConfig.fileBox.setVisible(checked))#Shows the fileBox
        
        self.mainLayout.addWidget(confWnd)

And here is the class that implements the behavior for the SerialPort configuration:

class SerialConfig():
    def __init__(self):
        #Serial port configuration, can be expanded
        self.serialBox = QGroupBox()
        self.serialBoxLayout = QVBoxLayout()
        
        self.portInput = QLineEdit()
        self.baudRateInput = QLineEdit()
        self.dataSizeInput = QLineEdit()
        self.connectionStateLabel = QLabel("Connection status")
            
        #self.connectionStateWidget
        self.connectionState = QTextEdit()
        self.connectionState.setReadOnly(True)
        self.connectionState.setFixedSize(350,80)
        
        self.serialInfoWidget = QWidget()
        self.serialInfoLayout = QFormLayout()
        self.serialInfoWidget.setLayout(self.serialInfoLayout)
        self.serialInfoLayout.addRow("Port:",self.portInput)
        self.serialInfoLayout.addRow("Baud rate:",self.baudRateInput)
        self.serialInfoLayout.addRow("Size of data package (in bytes):",self.dataSizeInput)
        
        
        self.connectButton = QPushButton("Connect")
        

        #Layout order
        self.serialBoxLayout.addWidget(self.serialInfoWidget)
        self.serialBoxLayout.addWidget(self.connectButton)
        self.serialBoxLayout.addWidget(self.connectionStateLabel)
        self.serialBoxLayout.addWidget(self.connectionState)
        
        
        self.serialBox.setLayout(self.serialBoxLayout)
        self.serialBox.setVisible(False)

This is how it looks on the default size (QSize(800,600)) after running the application:
enter image description here

And this is how it looks like after maxing the window:

enter image description here

Is there any way to keep the distances within widgets when I resize my window?

I’m quite new to PyQt so any other comment is welcome. Thank you!

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật