<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" >
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:controlBarLayout>
<s:BasicLayout/>
</s:controlBarLayout>
<s:controlBarContent>
<s:Button id="btnCheckOut" y="10" label="Checkout" right="10"/>
<s:Button id="btnCartView" y="10" label="View Cart" right="90"/>
<s:Button label="Flex" x="5" y="5"/>
</s:controlBarContent>
<s:Label text="(c) 2009, FlexGrocer" right="10" bottom="10"/>
<s:Group x="0" y="0" width="100%" height="100%" id="bodyGroup">
<s:layout>
<s:HorizontalLayout/>
</s:layout>
<s:Group width="100%" height="150" id="products">
<s:layout>
<s:VerticalLayout/>
</s:layout>
<s:Label text="Milk" id="prodName"/>
<s:Label text="$1.99" id="Price"/>
<s:Button label="AddToCart" id="add"/>
</s:Group>
<s:Group id="cartGroup" height="100%">
<s:layout>
<s:VerticalLayout/>
</s:layout>
<s:Label text=" Your Cart Total: $"/>
<s:Button label="ViewCart"/>
</s:Group>
</s:Group>
</s:Application>