• File Location

    • src/screens/ChatModule/ChatScreen/ChatScreen.js
  • Data

    • If you’d like to change data present on this screen, please locate this file

      1. src/screens/ChatModule/ChatScreen/ChatScreen.js
    • Locate the use effect function that uses dummy data inside src/DummyData/ChatDummyData.json to create a message history array

    • Create/Edit/Delete items and observe how the page changes. You can add more items like this and the page will automatically become scrollable.

      "messages": [
          {
              "username": "sabrina",
              "dateSent": 1609244048, // milliseconds since January 1, 1970
              "text": "Hello",
              "profilePicturePath": "www.website.com/someImage.jpg"
          },
          ...
      ]
      
  • Additional Notes

    • This screen does allow for selecting an attachment, but it will not be visible anywhere and will not be sendable either
    • This screen does allow for taking a picture/choosing one from your library, but it won’t let you send it or display it anywhere
    • Voice Messages cannot really be recorded
    • We will have all of these features implemented in upcoming releases