Hey guys, how do we make the number of columns dynamic in a form? Like if it's a desktop there's 4 columns and if its a tablet then 2 columns only.

Hey guys, how do we make the number of columns dynamic in a form? Like if it's a desktop there's 4 columns and if its a tablet then 2 columns only.
It's possible but you have to create 2 Forms (TabletForm and DesktopForm) and Visible Forms based on screen size (Open SizeBreakpoints property of App) you can customize your Whole app based on SizeBreakpoints.
Set variable on OnStart Property of App
if(SizeBreakpoints>2000 || SizeBreakpoints < 3999,Set(tabform,true);Set(desktopform,false),SizeBreakpoints>4000,Set(tabform,false);Set(desktopform,true));
OnVisible Property of TabletForm set as tabform and Onvisible property of DesktopForm set as desktopform.
now Set 4 column manually in Desktop form and set 2 in Tablet form.
This is a solution I know. If it helps you mark this as solved.