| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
DynamicButtonStack lays out a collection of UIKit buttons in either a column or a row. It dynamically adjusts the layout to suit the button content and the available space.
See the blog post to read more about the problems solved by DynamicButtonStack and the design principles behind it.
Add DynamicButtonStack to an existing Xcode project as a package dependency:
Your app provides a DynamicButtonStack with buttons and a maximum width. The DynamicButtonStack then provides your app the minimum width and height required. Your app then gives the DynamicButtonStack at least that amount of space and the buttons will be nicely stacked within that space.
You can supply as many buttons as you like. Their titles can be as long as you like, and the font can be as large as you like. In exchange, give the button stack the height it needs. Therefore the button stack is typically best placed in a vertically scrolling view.
Create a DynamicButtonStack and give it an array of buttons that each have both an image and a title. Add the button stack to your view hierarchy.
let button = UIButton()
button.setImage(UIImage(systemName: "paperplane"), for: .normal)
button.setTitle("Send", for: .normal)
buttonStack = DynamicButtonStack(buttons: [
button,
])
view.addSubview(buttonStack)The button stack can be laid out with either sizeThatFits and layoutSubviews or using constraints.
When using constraints, the stack sets its vertical compression resistance priority to required because the buttons may be clipped otherwise. Typically a width constraint should be provided.
When using layoutSubviews, the frame should be set with a size at least as large as the size returned from sizeThatFits (in both dimensions). Measure the minimum size using sizeThatFits. Pass your container’s width limit and an unlimited height. An assertion will fail if the height is not unlimited. This is a reminder that handling restricted heights is not currently supported.
override func layoutSubviews() {
super.layoutSubviews()
let availableSize = CGSize(width: bounds.width, height: .greatestFiniteMagnitude)
let requiredSize = buttonStack.sizeThatFits(availableSize)
buttonStack.frame = CGRect(origin: .zero, size: requiredSize)
}The buttons can be styled however you like. Colour, font, shadow, highlight state etc.
✅ DynamicButtonStack is considered ready for use in production.
↔️ Respects both left-to-right and right-to-left layouts.
😇 There is no private API use or interference with private subviews.
There are two identical schemes in the Xcode project to encourage Swift Package Index to build the Swift package instead of trying to build the demo app. Therefore it makes no difference which scheme is used for development.
DynamicButtonStack is a project from Douglas Hill and was developed for my reading app.
MIT license — see License.txt
| Back | FazBrowse Home | New Git URL |