green_shoes
green_shoes copied to clipboard
Is there any way to display data in table format.
@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
Thanks a lot.