Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there any way to display data in table format. #79

Open
BeenaShetty opened this issue Jul 26, 2013 · 2 comments
Open

Is there any way to display data in table format. #79

BeenaShetty opened this issue Jul 26, 2013 · 2 comments

Comments

@BeenaShetty
Copy link

No description provided.

@ashbb
Copy link
Owner

ashbb commented Jul 29, 2013

@BeenaShetty Thanks for the post. There is no special method to display data in table format in Shoes.
But you can write the code by yourself. ;-) How about using flow and border like this?

require 'green_shoes'
Shoes.app do
  flow margin: 30 do
    flow width: 400, height: 200 do
      border black
      16.times do
        flow width: 100, height: 50 do
          border black
          para 'hello', align: 'center'
        end
      end
    end
  end
end

@BeenaShetty
Copy link
Author

Thanks a lot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants