Too much white space when adding components to App

Well I figured it out. Turns out when you use .addComponent(myForm) it defaults the full_width_row option to False which means that changing the options in the IDE doesn’t do anything. This isn’t very intuitive as it is assumed that this option should be inherited and not defaulted.

The solution is to add:

content_panel.add_component(My_Form(), full_width_row = True)

Thanks to this forum for the solution:

2 Likes