Skip to content

Commit

Permalink
💫 Update: Ex - ModalSheetViewTest02
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Oct 2, 2024
1 parent 5989b1d commit 1ee52e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion example/src/examples/ModalSheetViewTest02.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ function ModalContent(props: {
logListDisplayRef.current?.addItem('onModalDidHide');
});

useModalSheetViewEvents('onModalFocusChange', () => {
logListDisplayRef.current?.addItem('onModalFocusChange');
});

useModalSheetViewEvents('onModalSheetStateWillChange', () => {
logListDisplayRef.current?.addItem('onModalSheetStateWillChange');
});
Expand Down Expand Up @@ -135,7 +139,7 @@ export function ModalSheetViewTest02(props: ExampleItemProps) {
<ExampleItemCard
style={props.style}
index={props.index}
title={'RNIDetachedViewTest02'}
title={'ModalSheetViewTest02'}
description={[
"TBA",
]}
Expand Down

0 comments on commit 1ee52e5

Please sign in to comment.