<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:extended="com.nbilyk.flex.extended.*" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#FFFFFF, #FFFFFF]" fontSize="14" viewSourceURL="examples/betterFormItemExample/index.html">
    <mx:VBox horizontalCenter="0" horizontalAlign="center">
        <mx:Text text="Right click to view source."/>
        <mx:Form width="400">
            <extended:BetterFormItem selectable="true" multiline="true" label="This is some text that is very long and needs to wrap. How 'bout that?" maxLabelWidth="180">
                <mx:TextInput text=""/>
            </extended:BetterFormItem>
            <extended:BetterFormItem selectable="true" multiline="false" label="Also long, but this time we won't wrap." maxLabelWidth="180">
                <mx:TextInput text=""/>
            </extended:BetterFormItem>
        </mx:Form>
    </mx:VBox>
</mx:Application>