ViniciusGarciaSilva / onboard

Taki Tiler (Onboard Taqtile)
0 stars 0 forks source link

[Track 7] [UI + INT] User Detail #10

Open taki-tiler[bot] opened 6 years ago

taki-tiler[bot] commented 6 years ago

Once you've finished the list, your next task is to create a user detail screen, both UI and Integration, which will show up when you click on a user in user list screen.

Step 1 - UI

This screen should have the following information about the user

Tip: It's a common practice to reuse some UI components of Detail screen in Create screen. So think if it's possible, in your app, to create the same UI for both detail and create user screen.

ViniciusGarciaSilva commented 6 years ago

Finish

taki-tiler[bot] commented 6 years ago

Step 2 - Integration

To get the user info, make a request consuming this endpoint:

GET https://tq-template-server-sample.herokuapp.com/users/{id}

Where {id} should be replaced with the id of the user (without the {}). An example:

GET https://tq-template-server-sample.herokuapp.com/users/1

Note: Don't use the data received from the list! Get the user data from the endpoint above.

ViniciusGarciaSilva commented 6 years ago

Finish

taki-tiler[bot] commented 6 years ago

Click here for your next track