main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
692 bytes
|
Line | |
---|
1 | import { registerAction, pinchAction } from '@use-gesture/core/actions'
|
---|
2 | import { UserPinchConfig, Handler, EventTypes } from '@use-gesture/core/types'
|
---|
3 | import { useRecognizers } from './useRecognizers'
|
---|
4 |
|
---|
5 | /**
|
---|
6 | * Pinch hook.
|
---|
7 | *
|
---|
8 | * @param {Handler<'pinch'>} handler - the function fired every time the pinch gesture updates
|
---|
9 | * @param {UserPinchConfig} config - the config object including generic options and pinch options
|
---|
10 | */
|
---|
11 | export function usePinch<EventType = EventTypes['pinch'], Config extends UserPinchConfig = UserPinchConfig>(
|
---|
12 | handler: Handler<'pinch', EventType>,
|
---|
13 | config?: Config
|
---|
14 | ) {
|
---|
15 | registerAction(pinchAction)
|
---|
16 | return useRecognizers({ pinch: handler }, config || {}, 'pinch')
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.