diff --git a/README.md b/README.md
index d61649b..7ebe74d 100644
--- a/README.md
+++ b/README.md
@@ -239,6 +239,73 @@ export class BrightnessControlsComponent {
}
```
+### Custom Controls with Plus/Minus Buttons
+
+Build your own custom UI by disabling default controls and using the public methods:
+
+```typescript
+import { Component, viewChild, signal } from '@angular/core';
+import { PinchZoomComponent } from '@brianpooe/ngx-pinch-zoom';
+
+@Component({
+ selector: 'app-custom-controls',
+ standalone: true,
+ imports: [PinchZoomComponent],
+ template: `
+
+
Zoom: {{ zoomLevel() }} | Brightness: {{ brightnessLevel() }}
+ `, +}) +export class CustomControlsComponent { + pinchZoom = viewChild+ Build your own custom control UI using the component's public methods. This example demonstrates plus/minus buttons for both zoom + and brightness, with default controls disabled. Perfect for integrating controls into your own toolbar or UI layout. +
+Zoom State: {{ zoomstate() }} | Brightness State: {{ brightnessstate().toFixed(2) }}
+