Bernardo Ferrari
Bernardo Ferrari
I can't believe, but we have all tests passing.
I made borderRadius + width = 0 not draw anything (instead of crash, since borderRadius.zero + width: 0 = hairline).
I kept the hairline when there is no borderRadius. The code didn't hit any golden or anything (I just pushed, but tests will pass again). So... no borderRadius + width...
yes, but this is the current behavior of Border. The discussion is that `width = 0 + borderRadius.zero` and `width = 0 borderRadius.circular(1)` would also pop (right now it already...
Yes, width: 0 is nothing and there could be a new Border (that could even be a `ShapeBorder` so it works with `ShapeDecoration` which is better). Because `RoundedRectangleBorder` (as well...
I don't think it should a single command, because the OS treats as two? If you tap arrow-right it makes it real, if you tap a it makes ã. https://user-images.githubusercontent.com/351125/211207059-8ec16aba-5dfb-4dfb-a586-138c87949ed8.mov
I would like to add information to this: Flutter currently has letterSpacing and even wordSpacing, I don't think paragraphSpacing would be hard. Instead of applying horizontal space to each "...
Yes, I just need to figure out the new API.
I don't think it will, we could just modify `String line = "$object";` to account for multiple objects. I know about `print("${e1} ${e2} ${e3}")` or `[e1, e2, e3].forEach(print)`, but I...
My dream: ```dart void print2( [Object? arg1, Object? arg2, Object? arg3, Object? arg4, Object? arg5, Object? arg6, Object? arg7, Object? arg8, Object? arg9, Object? arg10, Object? arg11, Object? arg12, Object?...