Created
January 25, 2016 20:39
-
-
Save codenameone/124cab8d0c1da82756f1 to your computer and use it in GitHub Desktop.
A usage sample for the Codename One FlowLayout layout manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Form hi = new Form("Flow Layout", new FlowLayout()); | |
hi.add(new Label("First")). | |
add(new Label("Second")). | |
add(new Label("Third")). | |
add(new Label("Fourth")). | |
add(new Label("Fifth")); | |
hi.show(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sample usage code for https://www.codenameone.com/javadoc/com/codename1/ui/layouts/FlowLayout.html
From the Codename One project