This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| item: { | |
| __typename: "SeasonItem", | |
| cardAttributes: null, | |
| cardCtas: null, | |
| cardEyelet: "Le Iene", | |
| cardImages: [ | |
| { | |
| __typename: "ImagePlaceholder", | |
| engine: "mst", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function Popup({ | |
| showPopup, | |
| setShowPopup, | |
| }: { | |
| showPopup: boolean | |
| setShowPopup: (b: boolean) => void | |
| }) { | |
| const bottomSheetRef = useRef<BottomSheet>(null) | |
| const popupSnappoints = ["30%"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // create a reference to the bottom sheet | |
| const bottomSheetRef = useRef<BottomSheet>(null) | |
| //custom snap points | |
| const snapPoints = ["30%", "60%"] | |
| //track the current snap point index | |
| const [currentIndex, setCurrentIndex] = useState(-1) | |
| // track on which snap point index bottom sheet is currently |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function BottomSheetComponent({ | |
| showBottomSheet, | |
| setShowBottomSheet, | |
| }: { | |
| showBottomSheet: boolean | |
| setShowBottomSheet: (b: boolean) => void | |
| }) { | |
| // create a reference to the bottom sheet | |
| const bottomSheetRef = useRef<BottomSheet>(null) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = function (api) { | |
| api.cache(true) | |
| return { | |
| presets: ["babel-preset-expo"], | |
| plugins: ["react-native-reanimated/plugin"], | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yarn add @gorhom/bottom-sheet@^4 | |
| expo install react-native-reanimated react-native-gesture-handler |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npx create-expo-app -t expo-template-blank-typescript |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
NewerOlder