Search code examples
delphifiremonkeydelphi-10.2-tokyo

Delphi mobile menu


I'm trying to make a scrollable menu of text items on mobile (iOS and Android) with Delphi 10.2.3.

I've added a TListView and put labels on it. They won't scroll at runtime.

I've added a TVertScrollBox and put labels on it. They won't scroll at runtime.

Am I missing something about scrolling components?


Solution

  • While TListView still fails to scroll with TLabels on it, TVertScrollBox does scroll when it is full of TLabels with their HitTest property set to True. Problem solved.