Posted December 11, 20213 yr Administrators Download: The distributive is available by request only. Release date: 21 November 2021 New ✨ TfgCamera The new implementation of TfgCamera for iOS was added. TfgCameraPreview The new implementation of TfgCameraPreview for iOS was added. TfgBarcodeScanner The new implementation of TfgBarcodeScanner for iOS was added. Improvements 🙌 TfgCamera Added the ability to request the permissions required for the camera to work using the component itself TfgCamera.RequestPermission. Checking the current status of permissions TfgCamera.AuthorizationStatus. Typical use case: procedure TFormMain.fgFormCreate(Sender: TObject); begin fgCamera1.RequestPermission; end; procedure TFormMain.CameraPermissionRequest(const APermissionInfo: TfgPermissionInfo); begin if APermissionInfo.CheckResult = TfgPermissionCheckResult.Granted then fgCamera1.Active := True else // Processing errors. end; TfgCanvas Added new properties DefaultScale, PhysicalWidth, PhysicalHeight. Bug Fixes 🐛 Sizes TfgBitmap.Canvas.Width and TfgBitmap.Canvas.Height were returned in physical values instead of logical ones (iOS). FGX-150 The OnTap and OnLongTap events are being invoked simultaneously (Android). FGX-151 Two bugs is in showing popup form "..FGX Native\Samples\Popup - Base\PopupBaseDemo.dpr" (Android). The system status bar defined wrong content style in automatic mode (iOS). FGX-143 CameraZoom doesn't work for TfgMap (iOS). FGX-148 Automatically moving TfgDrawerLayout.Drawer panel from right to left side, when something forces alignment of nested components (iOS). FGX-149 Spontaneous reset offset in the TfgCollectionView after hiding/showing (iOS).