finn-no / Finjinon

Custom iOS camera optimized for taking a sequence of photos quickly and/or selecting from an image picker
MIT License
58 stars 16 forks source link

Flashbutton text width expanded to fit Finnish translations #60

Closed teddyfahi closed 1 year ago

teddyfahi commented 1 year ago

FlashButton title is given needed width to display Finnish translation. The width is still set as a fixed value, using sizeToFit() would breaks the tap function as this also is re-setting of text width.

Before After
IMG_1798 IMG_1799IMG_1797
ag12 commented 1 year ago

using sizeToFit() would breaks the tap function as this also is re-setting of text width? why?

ninarg commented 1 year ago

We can use auto layout to make the button size itself according to the text inside. Instead of setting a fixed frame width. You can check our FloatingLoginButton for inspiration 😄