<?xml version="1.0" encoding="utf-8"?>
<bobjim:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
     xmlns:bit101="com.bit101.components.*"
     xmlns:bobjim="com.bobjim.components.*">
    
    <bit101:VBox x="10" y="10" spacing="10">
        <bit101:CheckBox label="Good times?" />
        <bit101:CheckBox label="Great times?" />
        <bit101:CheckBox label="Super times?" />
        <bit101:PushButton label="Push Me" />
    </bit101:VBox>
    
    <bit101:ColorChooser x="100" y="10" value="#ff0000" usePopup="true" />
    
    <bit101:ColorChooser x="100" y="110" value="#ff0000" usePopup="true" popupAlign="top" />
    
    <bit101:HBox x="100" y="40">
        <bit101:Label text="Enter Name:" width="100" />
        <bit101:InputText id="input" />
        <bit101:Label text="{ input.text }" />
    </bit101:HBox>
    
</bobjim:Application>