Everything from camera access and notifications to drawing emojis. Why it’s great:
// Custom GLSL shader for waveform visualization type TWaveformShader = class(TCustomShader) procedure Initialize; override; end;
Instead of downloading single files, clone the entire GitHub repo to ensure you have all dependencies.
FMX is GPU-accelerated. You can draw thousands of shapes without flicker. Key sample: CanvasDrawingDemo – draws lines, bezier curves, and custom TPath objects. Lesson learned: Use BeginScene / EndScene when performing batch drawing. Never call Canvas.DrawLine inside a tight loop without batching.
: The FireMonkey 3D samples (using TViewport3D ) distinguish Delphi from many "web-wrapper" mobile frameworks. They demonstrate how to render complex 3D models and animations using the device's hardware acceleration.
The sample used absolute coordinates (e.g., Button.Width := 200 ). Fix: Look for samples that use TScaleLayout , TGridLayout , or AutoSize properties. Apply a TScaledLayout to the entire form and set its Scaled property to True .
Рассказываю из 17-летнего опыта, почему техническая поддержка сайта — это не развод на деньги. Реальные примеры, цены и подводные камни обслуживания.
Один раз я потратил ночь, проверяя сайт школы перед жалобой в департамент. С тех пор у меня есть личный чек-лист проверки сайта образовательной организации — без бюрократии, но с реальными подводными камнями. delphi fmx samples
Разработка корпоративного сайта — не про «красивый дизайн» и шаблон на WordPress. Это про доверие, продажи, удобство партнёров и сотрудников. Разбираем, как сделать сайт, который работает на бренд, а не лежит «для галочки». Everything from camera access and notifications to drawing
Посещаемость есть, продаж нет? Значит, это не трафик, а статистическая иллюзия. Разбираем, как находить «правильных» людей, отсеивать шум и заставить аналитику работать на бизнес, а не на красивый график. You can draw thousands of shapes without flicker
Everything from camera access and notifications to drawing emojis. Why it’s great:
// Custom GLSL shader for waveform visualization type TWaveformShader = class(TCustomShader) procedure Initialize; override; end;
Instead of downloading single files, clone the entire GitHub repo to ensure you have all dependencies.
FMX is GPU-accelerated. You can draw thousands of shapes without flicker. Key sample: CanvasDrawingDemo – draws lines, bezier curves, and custom TPath objects. Lesson learned: Use BeginScene / EndScene when performing batch drawing. Never call Canvas.DrawLine inside a tight loop without batching.
: The FireMonkey 3D samples (using TViewport3D ) distinguish Delphi from many "web-wrapper" mobile frameworks. They demonstrate how to render complex 3D models and animations using the device's hardware acceleration.
The sample used absolute coordinates (e.g., Button.Width := 200 ). Fix: Look for samples that use TScaleLayout , TGridLayout , or AutoSize properties. Apply a TScaledLayout to the entire form and set its Scaled property to True .