ethand91 / compose-api-tutorial

Simple Android Compose API Example

Home Page:https://dev.to/ethand91/android-jetpack-compose-api-tutorial-1kh5

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

compose-api-tutorial

Simple Android Compose API Example

The code requires json-server with a data.json file containing the following:

{
  "users": [
    {   
      "id": 1,
      "profile": {
        "age": 20, 
        "name": "Ethan",
        "email": "example@email.com"
      }   
    }   
  ]
}