Alex Styl
Alex Styl
I used ContactStore in the [Jetpack Compose Starter Kit](https://alexstyl.gumroad.com/l/compose-contacts) so that I could focus on the UI bits. Ended up building the whole contacts app in 2 weeks time. 🚀
Those silly tests. Who needs them anyway?
Closing this as it's been more than a year open
@tphinney I am using the SVGS from `/symbols/web/`. I am assuming those are the Symbols ones, aren't they? The SVG displayed on the original post is [this one](https://github.com/google/material-design-icons/blob/master/symbols/web/pause/materialsymbolsrounded/pause_fill1_40px.svg). It seems...
thanks for confirming @tphinney. are there any plans to update the svgs in the repo any time soon?
@sabinebarrera I am aware of the configurations of the ttf. You can find the configurations I am using in the 1st post. The bug discussed is about inconsistencies between the...
There is no timeline on this feature. Currently focused on other projects.
This is not something currently supported by ContactStore but it seems like a straightforward thing to support. It should be a as simple as adding a `isPrimary` boolean to `LabeledValue`...
I am having troubles understanding what you are trying to do. If i am getting this right, you are asking which contacts should you allow the users to add to...
I tried this code and the result is the same: ```swift let rootView = ComposeView() .frame(maxWidth: .infinity, maxHeight: .infinity) .background(Color.white) let controller = UIHostingController(rootView: rootView) self.addChild(controller) controller.view.translatesAutoresizingMaskIntoConstraints = false self.view.addSubview(controller.view)...