diff --git a/_includes/sidelist-programming/programming-react-native.html b/_includes/sidelist-programming/programming-react-native.html
index 5f35d30e..f32396eb 100644
--- a/_includes/sidelist-programming/programming-react-native.html
+++ b/_includes/sidelist-programming/programming-react-native.html
@@ -8,12 +8,11 @@
-
+
Demo & Samples
BarcodeScanner APIs
diff --git a/programming/react-native/explore-features/ui-customization.md b/programming/react-native/explore-features/ui-customization.md
new file mode 100644
index 00000000..675d97da
--- /dev/null
+++ b/programming/react-native/explore-features/ui-customization.md
@@ -0,0 +1,57 @@
+---
+layout: default-layout
+title: UI Customization (Foundational Edition) - Dynamsoft Barcode Reader Flutter Edition
+description: The UI customization guide for the foundational edition of Dynamsoft Barcode Reader Flutter.
+keywords: ui, customization, foundational, Flutter, barcode reader
+needAutoGenerateSidebar: true
+noTitleIndex: true
+---
+
+# UI Customization Guide (Foundational Edition)
+
+One of the advantages of using the foundational edition of the Barcode Reader is that you can customize the UI however you see fit. In this guide we will walk through some of the ways in which you can customize the scanner UI using the Barcode Reader Foundational API.
+
+## Specifying a Scan Region
+
+Use the [`setScanRegion`]({{ site.dce_flutter_api }}camera-enhancer.html#setscanregion) method to limit the scan area:
+
+```js
+let scanRegion = {
+ top: 0.35,
+ bottom: 0.65,
+ left: 0.15,
+ right: 0.85,
+ measuredInPercentage: true
+}
+camera.setScanRegion(scanRegion);
+```
+
+The scan region is displayed with a mask by default. To hide it, set [`scanRegionMaskVisible`]({{ site.dce_flutter_api }}camera-view.html#scanregionmaskvisible) to `false`.
+
+## Customizing the Camera View
+
+Customizable UI elements on the CameraView include:
+
+- `cameraToggleButton`: A button for switching between front and back facing cameras.
+- `scanLaser`: A vertical laser that moves within the scan region.
+- `scanRegionMask`: A mask covered outside the scan region.
+- `torchButton`: A button for switching on and off the torch.
+
+**Code Snippet**
+
+```js
+
+
+
+```
diff --git a/programming/react-native/release-notes/index.md b/programming/react-native/release-notes/index.md
index 57ed7cd2..e68940b2 100644
--- a/programming/react-native/release-notes/index.md
+++ b/programming/react-native/release-notes/index.md
@@ -9,6 +9,7 @@ breadcrumbText: Release Notes
# Dynamsoft Barcode Reader React Native SDK - Release Notes
+- [11.2.5002 (01/22/2026)](react-native-11.md#1125002-01222026)
- [11.2.5000 (12/18/2025)](react-native-11.md#1125000-12182025)
- [11.2.3000 (12/04/2025)](react-native-11.md#1123000-12042025)
- [11.0.5200 (08/18/2025)](react-native-11.md#1105200-08182025)
diff --git a/programming/react-native/release-notes/react-native-11.md b/programming/react-native/release-notes/react-native-11.md
index 80bf056d..ac39676c 100644
--- a/programming/react-native/release-notes/react-native-11.md
+++ b/programming/react-native/release-notes/react-native-11.md
@@ -9,6 +9,12 @@ breadcrumbText: Release Notes
# Dynamsoft Barcode Reader React Native SDK - Release Notes
+## 11.2.5002 (01/22/2026)
+
+### Fixed
+
+- Fixed a crash issue caused by lifecycle management code.
+
## 11.2.5000 (12/18/2025)
This release includes security maintenance updates to ensure continued protection of the product.