Of course. There is a concept section for Responsive Layouts. We are also working on a Tutorials section.
Best,
Luca
A simple example could be the ChartJS example:https://wisej.com/examples/
It shows the FlowLayout panel with the new FillWeight property. Child controls or panels automatically resize, wrap and also fill the row according to the FillWeight.
You should also look at the Application.ResponsiveProfileChanged and the Form.ResponsiveProfileChanged. You get the event when a responsive break is detected. The breaks are defined in the ClientzProfile.json file. There is a built-in version that you can override in your app simply by placing a file named ClientProfile.json at the root of the project. I have attached the built-in one.
In short, with Wisej responsive support you can
The Application.ActiveProfile property and the event args e.CurrentProfile and e.PreviousProfile return an instance of Wisej.Core.ClientProfile. see https://docs.wisej.com/api/wisej.core/general/wisej.core.clientprofile with a lot information about the responsive break and the device.
You can also use Application.Browser property to get this object: https://docs.wisej.com/api/wisej.web/general/application#browser
HTH
We didn’t have the time yet to build a more complex example and document all this. It will be done, I promise.
Best,
Luca
Hi Luca,
Can you add this info to the documentation?