- personal superapp project
- apply features on each screen
- request Android permissions
- read/write external storage not working
- hide status bar
- design on Figma
- set behaviors and logic
- set edit entry screen
- decide text editor features
- learn local storage management
- decide file type: md
- decide metadata to store
- passcode protection for entries
- sync option; but where?
- fix negative time distance
- fix empty TextInput behavior after some input is erased
- 2024-03-15
- screen: Space
- update location in real time
- minor fixes
- screen: Space
- 2024-03-14
- branch: screen-journal
- Android permissions not working; removed for now
- read/write external storage...
- need to figure out why permission is denied
- new boxes appear on top
- Android permissions not working; removed for now
- branch: screen-space
- finished
- branch: screen-journal
- 2024-03-13
- branch: screen-journal
- request Android permissions
- set up rough UI (box creation)
- set nested navigator; minor style changes
- set Entry screen
- branch: screen-journal
- 2024-03-12
- completed Navigation; added icons; set backBehavior; modify readme
- changed app icon(s)
- src/screens/Time.tsx: display time; finished
- src/screens/Direction.tsx: display time distance; finished
- 2024-03-11: initial commit; created react-native app; initial bottomTabNavigator
First, you will need to start Metro, the JavaScript bundler that ships with React Native.
To start Metro, run the following command from the root of your React Native project:
# using npm
npm start
# OR using Yarn
yarn start
Let Metro Bundler run in its own terminal. Open a new terminal from the root of your React Native project. Run the following command to start your Android or iOS app:
# using npm
npm run android
# OR using Yarn
yarn android
# using npm
npm run ios
# OR using Yarn
yarn ios
If everything is set up correctly, you should see your new app running in your Android Emulator or iOS Simulator shortly provided you have set up your emulator/simulator correctly.
This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively.
Now that you have successfully run the app, let's modify it.
-
Open
App.tsx
in your text editor of choice and edit some lines. -
For Android: Press the R key twice or select "Reload" from the Developer Menu (Ctrl + M (on Window and Linux) or Cmd ⌘ + M (on macOS)) to see your changes!
For iOS: Hit Cmd ⌘ + R in your iOS Simulator to reload the app and see your changes!
You've successfully run and modified your React Native App. 🥳
If you want to install the app manually, you can run the following in the command and download the APK file.
cd android
./gradlew assmebleRelease
# download the APK file in android/app/build/outputs/apk/release
- If you're curious to learn more about React Native, check out the Introduction to React Native.
- React Native Website - learn more about React Native.
- Getting Started - an overview of React Native and how setup your environment.
- Learn the Basics - a guided tour of the React Native basics.
- Blog - read the latest official React Native Blog posts.
@facebook/react-native
- the Open Source; GitHub repository for React Native.