Skip to content

Instantly share code, notes, and snippets.

@grantges
Created January 21, 2015 18:17
Show Gist options
  • Save grantges/d28629cc2372b639066f to your computer and use it in GitHub Desktop.
Save grantges/d28629cc2372b639066f to your computer and use it in GitHub Desktop.
Custom TableView Row
<Alloy>
<Window class="container">
<TableView id="myTableView">
<TableViewRow height="100" with="100%">
<View height="100" width="100%" layout="horizontal">
<View id="indicator" borderRadius="12.5" backroundColor="green" height="25" width="25" />
<Label id="myCustomLabel" left="10">
This is a label that may have lots of text in
it, i can do this because i have overwritten the look of the TableViewRow
</Label>
</View>
</TableViewRow>
</TableView>
</Window>
</Alloy>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment