Add Spinner to and single color Spinner to example
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/676abbff Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/676abbff Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/676abbff Branch: refs/heads/feature/mdl Commit: 676abbff880250a70a3c18d70f968feac07c07a4 Parents: 5ec8a41 Author: piotrz <[email protected]> Authored: Sun Dec 18 14:30:31 2016 +0100 Committer: piotrz <[email protected]> Committed: Sun Dec 18 14:30:31 2016 +0100 ---------------------------------------------------------------------- examples/flexjs/MDLExample/src/main/flex/Loading.mxml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/676abbff/examples/flexjs/MDLExample/src/main/flex/Loading.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/MDLExample/src/main/flex/Loading.mxml b/examples/flexjs/MDLExample/src/main/flex/Loading.mxml index 8a40003..6095965 100644 --- a/examples/flexjs/MDLExample/src/main/flex/Loading.mxml +++ b/examples/flexjs/MDLExample/src/main/flex/Loading.mxml @@ -19,5 +19,12 @@ limitations under the License. --> <mdl:TabBarPanel xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mdl="library://ns.apache.org/flexjs/mdl"> - <mdl:Spinner isActive="true"/> + <mdl:Grid> + <mdl:GridCell column="1"> + <mdl:Spinner isActive="true"/> + </mdl:GridCell> + <mdl:GridCell column="1"> + <mdl:Spinner isActive="true" singleColor="true"/> + </mdl:GridCell> + </mdl:Grid> </mdl:TabBarPanel>
