dohooo / react-native-table-component

🌱Build table for react native
MIT License
733 stars 189 forks source link

Custom styles for first cell in row / other cells #101

Open netandreus opened 5 years ago

netandreus commented 5 years ago

Is there some ability to appy different styles to first cell and other cells in rows?

mariano-villanueva commented 2 years ago

The way I found to do this is adding a new prop to the Rows element. Then in cell.js, I handle that prop to do what I want.

image

Then in cell.js...

image

This way you can pass any prop to the Row/Rows/Cell component and handle it your own way.