• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
ansdpwn / 도로위험상황_모니터링및안내시스템 star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB 1
  • Files
  • Commit
  • Branches
도로위험상황_모니터링및안내시스템srccomponentBottomDrop.js
Download as .zip file
File name
Commit message
Commit date
.bundle
[FEAT] fogapp
2023-11-14
__tests__
[FEAT] fogapp
2023-11-14
android
[FIX] ui 화면에 맞게 수정
2023-11-14
ios
[FEAT] fogapp
2023-11-14
src
[FIX] driving문제 수정
2023-11-15
.buckconfig
[FEAT] fogapp
2023-11-14
.eslintrc.js
[FEAT] fogapp
2023-11-14
.flowconfig
[FEAT] fogapp
2023-11-14
.gitignore
[FEAT] fogapp
2023-11-14
.node-version
[FEAT] fogapp
2023-11-14
.prettierrc.js
[FEAT] fogapp
2023-11-14
.ruby-version
[FEAT] fogapp
2023-11-14
.watchmanconfig
[FEAT] fogapp
2023-11-14
App.js
[FEAT] fogapp
2023-11-14
Gemfile
[FEAT] fogapp
2023-11-14
app.json
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
babel.config.js
[FEAT] fogapp
2023-11-14
index.js
[FEAT] fogapp
2023-11-14
metro.config.js
[FEAT] fogapp
2023-11-14
package-lock.json
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
package.json
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
test.json
[FEAT] fogapp
2023-11-14
File name
Commit message
Commit date
component
[FIX] driving문제 수정
2023-11-15
context
[FIX] driving문제 수정
2023-11-15
navigator
[FIX] driving문제 수정
2023-11-15
resoureces
[CHORE] modal 메시지 수정, login logo수정
2023-11-14
screens
[FIX] driving문제 수정
2023-11-15
color.js
[FIX] test 코드수정
2023-11-14
File name
Commit message
Commit date
Action.js
[CHORE] modal 메시지 수정, login logo수정
2023-11-14
BottomDrop.js
[FEAT] fogapp
2023-11-14
Button.js
[FEAT] fogapp
2023-11-14
Checkbox.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
CustomDrawer.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
DriveStatus.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
Input.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
Logo.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
Map.js
[FIX] driving문제 수정
2023-11-15
ModalComponent.js
[CHORE] modal 수정
2023-11-14
Photo.js
[FIX] driving문제 수정
2023-11-15
Search.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
moonyeju 2023-11-14 10fed03 [FEAT] fogapp UNIX
Raw Open in browser Change history
import React, {useCallback, useRef, useMemo} from 'react'; import {View, StyleSheet} from 'react-native'; import BottomSheet, {BottomSheetBackdrop} from '@gorhom/bottom-sheet'; export default function BottomDrop({ onChange, children, }) { // ref const bottomSheetRef = useRef(null); // variables const snapPoints = useMemo(() => ['25%', '50%', '75%'], []); // renders const renderBackdrop = useCallback( props => ( <BottomSheetBackdrop {...props} disappearsOnIndex={1} appearsOnIndex={2} /> ), [], ); return ( <BottomSheet ref={bottomSheetRef} snapPoints={snapPoints} backdropComponent={renderBackdrop} onChange={onChange}> <View style={styles.contentContainer}>{children}</View> </BottomSheet> ); } const styles = StyleSheet.create({ contentContainer: { padding: 16, alignItems: 'center', }, });

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up