Live data from Hacker News

Show HN: Griddle – Android-like layout containers for iOS

github.com

1–8 of 8 posts

Re: Show HN: Griddle – Android-like layout containers for iOS

#5
As a longtime iOS developer, I find the android layout system far superior for a lot of things. Before AutoLayout, things like containers that adjusted their size to fit text required reams of custom code—AutoLayout is still less intuitive and harder to reason about (though theoretically much more powerful) than Android's linear layouts, grids, etc.

Re: Show HN: Griddle – Android-like layout containers for iOS

#6

As a longtime iOS developer, I find the android layout system far superior for a lot of things. Before AutoLayout, things like containers that adjusted their size to fit text required reams of custom code—AutoLayout is still less intuitive and harder to reason about (though theoretically much more powerful) than Android's linear layouts, grids, etc.

Try this: https://github.com/Masonry/Masonry

Re: Show HN: Griddle – Android-like layout containers for iOS

#7
post #6

As a longtime iOS developer, I find the android layout system far superior for a lot of things. Before AutoLayout, things like containers that adjusted their size to fit text required reams of custom code—AutoLayout is still less intuitive and harder to reason about (though theoretically much more powerful) than Android's linear layouts, grids, etc.

Try this: https://github.com/Masonry/Masonry

My issue with masonry is that it's a paper thin abstraction over auto layout. There's some nice syntactic sugar, like chained calls to layout rules. Ultimately I think there's room for some containers that give up flexibility in exchange for simplicity in code and mental model