Reputation: 1329
This is a common layout for having multiple layouts vertically aligned and I can't figure out how to obtain it in my app:
I have figured out how to do this:
But I really like the way the rounded corners look at the top and bottom of the group looks. I know you can achieve rounded corners with
var view = Titanium.UI.createView({
borderRadius:10,
backgroundColor:'red',
width:50,
height:50
});
window.add(view);
but I would really like it to look like the first example.
Upvotes: 0
Views: 770
Reputation: 5332
Please refer Join Two Text Fields, which helped me to create text fields with rounded corner.
You can download the images from the following links
Upvotes: 1
Reputation: 1914
The Appcelerator Kitchen Sink project has an example or 2 of this.
Here is one: https://github.com/appcelerator/KitchenSink/blob/master/Resources/ui/common/baseui/table_views.js
Upvotes: 1