featherless 631779545e
[ButtonBar] Expose a rectForItem:inCoordinateSpace: API. (#7438)
This API will allow clients to present overlay views that point to views in an MDCButtonBar.

Expected usage:

```swift
@objc func didTapButton(_ item: UIBarButtonItem) {
  let rect = buttonBar.rect(for: item, in: view)
  // Present an overlay pointing at `rect`
}
```

Closes https://github.com/material-components/material-components-ios/issues/7248
2019-05-22 14:00:19 -04:00
..