-
Notifications
You must be signed in to change notification settings - Fork 734
Fix/sortable list item fixes #2217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
src/incubator/TextField/types.ts
Outdated
/** | ||
* Use react-native-gesture-handler instead of react-native for the base TextInput | ||
*/ | ||
gestureHandler?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would call this useGestureHandler
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That sounds more like useGestureHandlerRootView
we have in Modal
, I thought this keeps the convention of animated
and reanimated
, WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But animated
reanimated
are descriptive so it works and gestureHandler
is a noun
Maybe call it gestureHandled
, but that sounds a little weird.
maybe withGestureHandler
.. 🤔
@M-i-k-e-l |
Description
Fix issue with flaky sorting when dragging fast (see #2118)
Scale both axes and add
scale
to propsIncubator.TextField
- support a gesture-handler version (for a draggable input list item).WOAUILIB-2824
Changelog
SortableList - fix issue with flaky sorting when dragging fast + add
scale
to props + support a gesture-handler version inIncubator.TextField