├── .DS_Store ├── .babelrc ├── .gitignore ├── README.md ├── assets └── sounds │ └── tetris.mp3 ├── demo.gif ├── exp.json ├── main.js ├── package.json └── src ├── components ├── cell.js ├── create_block.js ├── grid.js ├── helpers.js ├── hold.js ├── preview.js └── rotation.js ├── img ├── down_arrow.png ├── left-arrow.png ├── left-filled.png ├── right-arrow.png ├── right-filled.png └── rotate_arrow.png └── main.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | .exponent/* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/README.md -------------------------------------------------------------------------------- /assets/sounds/tetris.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/assets/sounds/tetris.mp3 -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/demo.gif -------------------------------------------------------------------------------- /exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/exp.json -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/package.json -------------------------------------------------------------------------------- /src/components/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/components/cell.js -------------------------------------------------------------------------------- /src/components/create_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/components/create_block.js -------------------------------------------------------------------------------- /src/components/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/components/grid.js -------------------------------------------------------------------------------- /src/components/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/components/helpers.js -------------------------------------------------------------------------------- /src/components/hold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/components/hold.js -------------------------------------------------------------------------------- /src/components/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/components/preview.js -------------------------------------------------------------------------------- /src/components/rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/components/rotation.js -------------------------------------------------------------------------------- /src/img/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/img/down_arrow.png -------------------------------------------------------------------------------- /src/img/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/img/left-arrow.png -------------------------------------------------------------------------------- /src/img/left-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/img/left-filled.png -------------------------------------------------------------------------------- /src/img/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/img/right-arrow.png -------------------------------------------------------------------------------- /src/img/right-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/img/right-filled.png -------------------------------------------------------------------------------- /src/img/rotate_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/img/rotate_arrow.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggomaeng/react-native-tetris/HEAD/src/main.js --------------------------------------------------------------------------------