@@ -284,9 +284,9 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
284
284
) ;
285
285
} , [
286
286
_providedContainerHeight ,
287
- animatedContainerHeight . value ,
287
+ animatedContainerHeight ,
288
288
animatedHandleHeight ,
289
- animatedSnapPoints . value ,
289
+ animatedSnapPoints ,
290
290
handleComponent ,
291
291
] ) ;
292
292
const isInTemporaryPosition = useSharedValue ( false ) ;
@@ -433,10 +433,10 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
433
433
return SCROLLABLE_STATE . LOCKED ;
434
434
} , [
435
435
enableContentPanningGesture ,
436
- animatedAnimationState . value ,
437
- animatedKeyboardState . value ,
438
- animatedScrollableOverrideState . value ,
439
- animatedSheetState . value ,
436
+ animatedAnimationState ,
437
+ animatedKeyboardState ,
438
+ animatedScrollableOverrideState ,
439
+ animatedSheetState ,
440
440
] ) ;
441
441
// dynamic
442
442
const animatedContentHeightMax = useDerivedValue ( ( ) => {
@@ -553,15 +553,15 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
553
553
return currentIndex ;
554
554
} , [
555
555
android_keyboardInputMode ,
556
- animatedAnimationSource . value ,
557
- animatedAnimationState . value ,
558
- animatedContainerHeight . value ,
559
- animatedCurrentIndex . value ,
560
- animatedNextPositionIndex . value ,
561
- animatedPosition . value ,
562
- animatedSnapPoints . value ,
563
- isInTemporaryPosition . value ,
564
- isLayoutCalculated . value ,
556
+ animatedAnimationSource ,
557
+ animatedAnimationState ,
558
+ animatedContainerHeight ,
559
+ animatedCurrentIndex ,
560
+ animatedNextPositionIndex ,
561
+ animatedPosition ,
562
+ animatedSnapPoints ,
563
+ isInTemporaryPosition ,
564
+ isLayoutCalculated ,
565
565
] ) ;
566
566
//#endregion
567
567
@@ -1499,8 +1499,8 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
1499
1499
} ;
1500
1500
} , [
1501
1501
enableDynamicSizing ,
1502
- animatedContentHeight . value ,
1503
- animatedContentHeightMax . value ,
1502
+ animatedContentHeight ,
1503
+ animatedContentHeightMax ,
1504
1504
_providedOverrideReduceMotion ,
1505
1505
_providedAnimationConfigs ,
1506
1506
] ) ;
@@ -1867,18 +1867,6 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
1867
1867
//#endregion
1868
1868
1869
1869
// render
1870
- if ( __DEV__ ) {
1871
- print ( {
1872
- component : BottomSheet . name ,
1873
- method : 'render' ,
1874
- params : {
1875
- animatedSnapPoints : animatedSnapPoints . value ,
1876
- animatedCurrentIndex : animatedCurrentIndex . value ,
1877
- providedIndex : _providedIndex ,
1878
- } ,
1879
- } ) ;
1880
- }
1881
-
1882
1870
const DraggableView = enableContentPanningGesture
1883
1871
? BottomSheetDraggableView
1884
1872
: Animated . View ;
0 commit comments