You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importReactfrom'react';import{Animated}from'react-native';importThumbnailSelectorfrom'react-native-thumbnail-selector';constthumbnails=[{caption: 'react-native',imageSrc: {uri: 'https://reactnative.dev/img/pwa/manifest-icon-512.png'},},{caption: 'Dolore do magna ullamco nisi quis.',imageSrc: {uri: 'https://reactnative.dev/img/pwa/manifest-icon-512.png'},},];functionExample(){// use toggle to show and hide ThumbnailSelectorlettoggle=()=>newPromise<Animated.EndResult>(res=>res);return(<ThumbnailSelectorthumbnails={thumbnails}toggle={func=>(toggle=func)}/>);}exportdefaultExample;