(e: GestureResponderEvent)
| 307 | }; |
| 308 | |
| 309 | const handleLongPress = (e: GestureResponderEvent) => { |
| 310 | if (!open || enableLongPressWhenStackOpened) { |
| 311 | onLongPress?.(e); |
| 312 | if (toggleStackOnLongPress) { |
| 313 | toggle(); |
| 314 | } |
| 315 | } |
| 316 | }; |
| 317 | |
| 318 | const { labelColor, backdropColor, stackedFABBackgroundColor } = |
| 319 | getFABGroupColors({ theme, customBackdropColor }); |
nothing calls this directly
no test coverage detected
searching dependent graphs…