I have a UI I'm creating in IB in landscape that has two table views, a "row" of buttons, and a web view. When I set things up in IB, I'm making the tables admittedly pretty narrow.
I'm rendering values right now using TableItem and TableSource from the Xamarin guide.
When I run the app. the tables grow significantly in width, as pictured in the attachment. The top is obviously the view in IB, the bottom in the simulator. In the shot, I am dragging down the leftmost table in this to get a better look at the cells running under the "middle" table. That's why there's green background above "Curly".
Is there a minimum width for Table Views? I did find this question on SO which answers in Obj-C, but I don't believe I do that in TableItem.
This question on the forums here seems similar, but is talking about laying tables on top of each other inside of a DialogViewController. I don't think I need that complexity, but realize I'm not using any sort of layout manager as is (was hoping I could just absolute position in IB for a UI this simple).
Thanks.