Expo start no error but stuck

Hi, i’m new in developing with react and expo.
I alread create a simple react-native apps with expo 29.0.0 before and using ‘npm start’ that actually running ‘react-native start’ and it works perfectly.
And now I try to move on using expokit. I already follow some tutorial but when I want to check my apps using ‘expo start’, it didn’t show any error and show the QR code.
Following the usual behavior, I scan it with my device (iphone 6) but it show “no usable data found”.
Now that’s weird, next I try using android emulator and follow the command to login as my user and this project should show up there.
Yes it show up but when I tap, nothing happen.
No error and apps not working, where I go wrong ?
this is my package.json

{
  "name": "testing",
  "version": "1.0.0",
  "private": true,
  "devDependencies": {
    "babel-eslint": "^8.2.6",
    "eslint": "^5.2.0",
    "eslint-plugin-flowtype": "^2.50.0",
    "eslint-plugin-import": "^2.13.0",
    "eslint-plugin-jsx-a11y": "^6.1.1",
    "eslint-plugin-prettier": "^2.6.2",
    "eslint-plugin-react": "^7.10.0",
    "eslint-plugin-react-native": "^3.2.1",
    "flow-bin": "^0.77.0",
    "flow-typed": "^2.5.1",
    "husky": "0.14.3",
    "jest": "^23.4.2",
    "jest-expo": "^29.0.0",
    "prettier": "^1.14.0",
    "react-test-renderer": "^16.4.1"
  },
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start",
    "eject": "expo eject",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "test": "jest"
  },
  "jest": {
    "preset": "jest-expo",
    "transformIgnorePatterns": [
      "node_modules/(?!(react-native|lottie-react-native|expo|react-native-maps|react-native-svg|react-native-branch|native-base-shoutem-theme|react-native-easy-grid|react-native-drawer|react-native-vector-icons|react-native-keyboard-aware-scroll-view|react-native-swiper|react-navigation|native-base|@expo|react-native-scrollable-tab-view|react-native-simple-modal)/)"
    ]
  },
  "dependencies": {
    "color": "^3.0.0",
    "expo": "^29.0.0",
    "native-base": "^2.7.2",
    "react": "16.3.1",
    "react-native": "https://github.com/expo/react-native/archive/sdk-29.0.0.tar.gz",
    "react-native-calendars": "^1.20.0",
    "react-native-divider": "^1.0.1",
    "react-native-image-header": "^1.0.1",
    "react-native-looped-carousel": "^0.1.13",
    "react-native-modal": "^6.0.0",
    "react-native-modalbox": "^1.6.0",
    "react-native-swipeout": "^2.3.3",
    "react-native-swiper": "^1.5.13",
    "react-navigation": "^2.9.3",
    "react-redux": "^5.0.7",
    "redux": "^4.0.0",
    "redux-form": "^7.4.2",
    "redux-persist": "^5.10.0",
    "redux-thunk": "^2.3.0",
    "remote-redux-devtools": "^0.5.12",
    "remote-redux-devtools-on-debugger": "^0.8.3",
    "swiper": "^4.2.6"
  }
}

thanks before for the respond
cheers ^^

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.