blob: df84f79b311daf3cb30d7009b01be910e6ed8d28 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" title="iOS Theme">
<fx:Script>
<![CDATA[
import flash.net.navigateToURL;
import mx.core.FlexGlobals;
]]>
</fx:Script>
<s:Scroller width="100%" height="100%" verticalScrollPolicy="on">
<s:Group width="100%" height="100%">
<s:layout>
<s:VerticalLayout paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10"/>
</s:layout>
<s:TextArea borderVisible="false" contentBackgroundAlpha="0" width="100%" editable="false" selectable="false">
<s:text><![CDATA[iOS theme proof of concept by Jason San Jose, Software Engineer, Adobe Flex.
Credit to Rusty Mitchell's blog post at Mercury Intermedia for Illustrator artwork.
icons by Joseph Wain / glyphish.com]]></s:text>
</s:TextArea>
<s:Button label="Flash Builder 4.5.1" width="100%"
click="navigateToURL(new URLRequest('http://adobe.com/go/try_flashbuilder'))"/>
<s:Button label="Jason's Flex Blog" width="100%"
click="navigateToURL(new URLRequest('http://blogs.adobe.com/jasonsj'))"/>
<s:Button label="iPhone UI Vector Elements" width="100%"
click="navigateToURL(new URLRequest('http://www.mercuryintermedia.com/blog/index.php/2009/03/iphone-ui-vector-elements'))"/>
<s:Button label="icons by Joseph Wain / glyphish.com" width="100%"
click="navigateToURL(new URLRequest('http://glyphish.com'))"/>
</s:Group>
</s:Scroller>
<s:actionContent>
<s:Button label="Go" click="navigator.pushView(views.PopUpsView)"/>
</s:actionContent>
</s:View>