In FMX, is it possible to make a TFlowLayout vertically scrollable? I've tried to put it in a scrollbox and checked some tips for VCL but they don't apply to FMX as FlowLayout does not have AutoSize and AutoWrap options.

In FMX, is it possible to make a TFlowLayout vertically scrollable? I've tried to put it in a scrollbox and checked some tips for VCL but they don't apply to FMX as FlowLayout does not have AutoSize and AutoWrap options.

Comments

  1. The onResize event fire BEFORE the form is resized so there is no way I can get the final width/height, right?

    ReplyDelete
  2. You can use the OnResized event of the FlowLayout (do not forget to use a flag variable to avoid entering in an endless loop).

    ReplyDelete

Post a Comment