2

I'm running into a problem with the size of my pickers when I put them inside of a stack view. The pickers change their size to their default size when they are put into the stack view. They do not do this when they are not placed into the stack view

Jel
  • 564
  • 5
  • 15

1 Answers1

3

Just add height and width constraints to your picker before you add it to your stackview and that should solve your problem.

Rob Norback
  • 6,401
  • 2
  • 34
  • 38
  • This worked exactly as I was hoping! Thank you very much @RobNorback. Working with the auto format is not as simple as you would think – Jel Oct 05 '15 at 21:02