Alternative for a mobile table

Is there an alternative to making a table with containers? I'm trying to reduce the amount of components since my app is getting slow.

I've uploaded an example. Each row is 9 components. (1 row container, 4 cel containers and 4 text components). In total this is 45 components which seems a lot for a simple table.

Any thought to a data table widget for the mobile app? Most business tools leverage a DB table and it would be great to be able to create mobile interfaces for those tables.

1 Like

Would be great to have something basic . It doesn’t have to be advanced like the one on desktop. Unless it’s easier to port that one to mobile.

On mobile, I doubt cell editing is necessary. I would think a modal with a form and input fields would be better for that because of the screen size but also the user experience.

Then again, if it’s easier to port to mobile, I rather have all features. :sweat_smile:

You can create a simple table in Markdown using the Text widget.

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

Lots of drawbacks ofc but it will let you display static text in the way you want.

1 Like