Add form header to a form
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Form> <mx:FormHeading label="Sample Form"/> <mx:FormItem id="usernameItem" label="Name"> <mx:TextInput id="username"/> </mx:FormItem> <mx:FormItem> <mx:Button id="button" label="Submit" /> </mx:FormItem> </mx:Form> </mx:Application>