resizeMode: 'fit' table width adapts to the container width. Columns resize using their neighbour's width
| header | header | header |
|---|---|---|
| cell | cell | cell |
| cell | cell | cell |
| cell | cell | cell |
resizeMode: 'flex' columns are sized independently unless there is not enought space in the container
| header | header | header |
|---|---|---|
| cell | cell | cell |
| cell | cell | cell |
| cell | cell | cell |
resizeMode: 'overflow' columns are sized independently. Table width can exceed its container
| header | header | header |
|---|---|---|
| cell | cell | cell |
| cell | cell | cell |
| cell | cell | cell |