Bernardo Ferrari

Results 401 comments of Bernardo Ferrari

how would color alias work? Because most people wouldn't have a corresponding name in Figma, I guess.

If I made only the "disable color rounding" would you be happy already? 🥺 On Mon, Jun 10, 2024, 16:55 Nicolas C. ***@***.***> wrote: > Yes exactly, to be of...

Flutter barely has the margin concept. If you want a Button with a margin, the official way is Padding(child: Button).

I disagree. The minimum touch target is super bad UX that only flutter does. You won't see in Android, iOS, web, macOS, anywhere. On Sat, Jun 8, 2024, 08:47 Harry...

![Screenshot_20240609_093244_Settings](https://github.com/conceptadev/mix/assets/351125/0662d41e-314b-4885-a8c5-e0c7ee1df624) What you mentioned uses either a fixed size or padding. Android doesn't use the tap touch target for anything like flutter does. It is just a please use padding....

the whole captcha and recapcha makes it way harder, like, yes, it would be doable, but what if captcha decides to check? Then you would fail...

I personally enjoy Kotlin's let a lot more than Swift's let. It creates a new non-nullable context inside: https://kotlinlang.org/docs/scope-functions.html#let ```kotlin val numbers = mutableListOf("one", "two", "three", "four", "five") numbers.map {...