<Alloy>
	<Window class="container">
    <View top="100">
      <TextField value="{{person.first}}"></TextField>
      <TextField value="{{name.middle}}" ></TextField>
      <TextField value="{{person.last}}" color="{{ person.last.length < 4 ? 'red' : 'black' }}"></TextField>
      <TextField value="{{person.last}}" oneway></TextField>
      <Widget id="test_widget" src="yy.sample" label="{{person.first}}" text="{{person.last}}"></Widget>
      <Label text="{{person.last.length < 4 ? 'too short' : 'great'}}"></Label>
      <Label>Hello, {{person.first}} {{name.middle}} {{person.last}} {{person.last.length}}</Label>
      <TextField value="{{field}}"></TextField>
      <Label>Length: {{field.length}}</Label>
      <Switch value="{{bool}}"></Switch>
      <Label>Length: {{bool}}</Label>
    </View>
	</Window>
</Alloy>
