Skip to content

Commit

Permalink
feat: initial implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommezz committed May 3, 2020
1 parent 3c1156d commit 0c73e14
Show file tree
Hide file tree
Showing 5 changed files with 494 additions and 23 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# react-native-scroll-bottomsheet
# Scroll Bottom Sheet

Cross platform scrollable bottom sheet with virtualisation support, running at 60 FPS and fully implemented in JS land

## Installation

```sh
npm i -S react-native-scroll-bottomsheet
npm i -S react-native-scroll-bottom-sheet
```

## Usage

```js
import ScrollBottomsheet from "react-native-scroll-bottomsheet";
import ScrollBottomSheet from "react-native-scroll-bottom-sheet";
```

## License
Expand Down
50 changes: 39 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "react-native-scroll-bottomsheet",
"name": "react-native-scroll-bottom-sheet",
"version": "0.0.1",
"description": "Cross platform scrollable bottom sheet with virtualisation support, running at 60 FPS and fully implemented in JS land",
"main": "lib/commonjs/index.js",
Expand All @@ -23,13 +23,13 @@
"ios",
"android"
],
"repository": "https://github.com/rgommezz/react-native-scroll-bottomsheet",
"author": "rgommezz <rauliyohmc@gmail.com> (https://github.com/rgommezz)",
"repository": "https://github.com/rgommezz/react-native-scroll-bottom-sheet",
"author": "Raul Gomez Acuña <raulgdeveloper@gmail.com> (https://github.com/rgommezz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rgommezz/react-native-scroll-bottomsheet/issues"
"url": "https://github.com/rgommezz/react-native-scroll-bottom-sheet/issues"
},
"homepage": "https://github.com/rgommezz/react-native-scroll-bottomsheet#readme",
"homepage": "https://github.com/rgommezz/react-native-scroll-bottom-sheet#readme",
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/bob": "^0.10.1",
Expand Down Expand Up @@ -73,6 +73,7 @@
"prettier"
],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"prettier/prettier": [
"error",
{
Expand Down Expand Up @@ -119,5 +120,9 @@
"module",
"typescript"
]
},
"dependencies": {
"react-native-gesture-handler": "^1.6.1",
"utility-types": "^3.10.0"
}
}
Loading

0 comments on commit 0c73e14

Please sign in to comment.