gitextract_pza16rl0/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── actions/ │ │ └── setup/ │ │ └── action.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.ts ├── example/ │ ├── App.js │ ├── app.json │ ├── babel.config.js │ ├── metro.config.js │ ├── package.json │ ├── src/ │ │ └── App.tsx │ ├── tsconfig.json │ └── webpack.config.js ├── lefthook.yml ├── package.json ├── scripts/ │ ├── bootstrap.js │ ├── copy-dts.js │ └── delete-lib-dir.js ├── src/ │ ├── __tests__/ │ │ └── index.test.tsx │ ├── components/ │ │ ├── animatedTouchableBackdropMask/ │ │ │ ├── index.tsx │ │ │ └── types.d.ts │ │ ├── backdrop/ │ │ │ ├── index.tsx │ │ │ └── types.d.ts │ │ ├── bottomSheet/ │ │ │ ├── index.tsx │ │ │ └── types.d.ts │ │ ├── container/ │ │ │ └── index.tsx │ │ └── defaultHandleBar/ │ │ ├── index.tsx │ │ └── types.d.ts │ ├── constant/ │ │ └── index.ts │ ├── hooks/ │ │ ├── useAnimatedValue.ts │ │ ├── useHandleAndroidBackButtonClose/ │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ └── useHandleKeyboardEvents/ │ │ ├── index.ts │ │ └── types.d.ts │ ├── index.ts │ ├── types.d.ts │ └── utils/ │ ├── convertHeight.ts │ ├── normalizeHeight.ts │ └── separatePaddingStyles.ts ├── tsconfig.build.json └── tsconfig.json