While TMS Software frequently updates their suites to align with the newest RAD Studio releases, version 3.6.8.8 represents a stable and robust iteration of the framework. Here is why this specific release matters:
Mobile platforms update rapidly. This specific build fixes critical issues with the virtual keyboard overlaying input controls on Android 13 and resolves rendering glitches on iOS 16’s Metal API backend. If you are targeting modern mobile devices, this version is mandatory. TMS FMX UI Pack 3.6.8.8 Full Source
uses TMSFMXGrid, TMSFMXGridCell;
procedure TForm1.FormCreate(Sender: TObject); begin TMSFMXGrid1.Columns.Add('Name', 150); TMSFMXGrid1.Columns.Add('Score', 80); TMSFMXGrid1.AddRow(['Alice', '95']); TMSFMXGrid1.AddRow(['Bob', '87']); TMSFMXGrid1.Options := TMSFMXGrid1.Options + [goRowSelect, goEdit]; end;While TMS Software frequently updates their suites to