Lines Matching refs:EmojiSticker

82 Open the **EmojiSticker.js** file in the **components** directory. Inside it, import `Animated` fro…
84 ```jsx EmojiSticker.js
90 ```jsx EmojiSticker.js
101 ```jsx EmojiSticker.js
102 export default function EmojiSticker({ imageSize, stickerSource }) {
123 In the **EmojiSticker.js** file, import `TapGestureHandler` from `react-native-gesture-handler` and…
126 ```jsx EmojiSticker.js
136 Inside the `<EmojiSticker>` component, create a reference called `scaleImage` using the `useSharedV…
138 ```jsx EmojiSticker.js
147 Create the following function in the `<EmojiSticker>` component:
149 ```jsx EmojiSticker.js
165 Create an `imageStyle` variable and add it to the `EmojiSticker` component:
167 ```jsx EmojiSticker.js
196 'components/EmojiSticker.js': 'tutorial/06-gestures/EmojiSticker.js',
201 export default function EmojiSticker({ imageSize, stickerSource }) {
236 In the **EmojiSticker.js**, import `PanGestureHandler` from the `react-native-gesture-handler` libr…
239 ```jsx EmojiSticker.js
246 ```jsx EmojiSticker.js
250 export default function EmojiSticker({ imageSize, stickerSource }) {
265 ```jsx EmojiSticker.js
266 export default function EmojiSticker({ imageSize, stickerSource }) {
288 ```jsx EmojiSticker.js
306 ```jsx EmojiSticker.js
322 Also, update the `<EmojiSticker>` component so that the `<PanGestureHandler>` component becomes the…
342 'components/EmojiSticker.js': 'tutorial/06-gestures/CompleteEmojiSticker.js',
347 export default function EmojiSticker({ imageSize, stickerSource }) {