Material Design web data tables: where should I place the add button?

Viewed 20

I have the following Material Design data table, based on Vuetify v-data-table, which displays a list of users:

enter image description here

Each user has the following data:

  • username (string)
  • email (string)
  • fullname (string): obtained by concatenating firstName (string) and lastName (string)
  • age (int)
  • role (string): enum got by the server (can be READONLY_USER, BASE_USER or ADMINISTRATOR)
  • description (string): can be a very long string

Now I was wondering, according to Material Design, where should I place the add button?

0 Answers
Related