Mark Rickert

Results 135 comments of Mark Rickert

Yeah. Understood. Any comments in the way I implemented it or the :all feature where you can specify your own button title? I'll continue to use my "franken-fork" for all...

![john-cho](https://cloud.githubusercontent.com/assets/139261/3483849/52381544-0397-11e4-9d9c-e93ac998e472.gif) For now, I've just got it it going full screen.

Any word on this issue? Wondering if you could reproduce?

Here you go, sir: https://github.com/markrickert/rmq_ipad_issue_79 Looks like the problem fixes itself when the iPad is rotated, but the views are not initially styled properly.

Check out the documentation for `refreshable` here: https://github.com/clearsightstudio/ProMotion/blob/master/docs/Reference/API%20Reference%20-%20ProMotion%20TableScreen.md#refreshableoptions-- As far as customization of the color, I'd look into the `UIAppearance` class to do that.

Yeah, i like the group_layout idea.

I don't believe anyone has started on this, though I've coded around it recently to get some similar behavior in my own app.

I guess the workflow would be to add everything to the UIView and then `resize_frame_to_fit_subviews` and then center the view, huh?

I'm wondering if instead of doing a bunch of math to layout the views, if we use that approach in this feature behind the scenes to implement the grouped layout?

``` ruby rmq(:view1, :view2, :view3).group_layout(centered: horizontal) # behind the scenes append(UIView, :centered_horizontal_view).tap do |chv| views.each do |v| chv.unappend.append(v) end end ``` or something like that. But i'm not sure if...