Tad Fisher

Results 95 comments of Tad Fisher

After some debugging, what's going on is that `ModalBottomSheetState.show()` is throwing in `SwipeableState.animateTo()`: ```kotlin val targetOffset = anchors.getOffset(targetValue) requireNotNull(targetOffset) { "The target value must have an associated anchor." } ```...

`allOf` appears equivalent to [`Assertion.Builder.and`](https://strikt.io/strikt/api/Assertion/Builder/#method__abstract_infix_fun_and_assertions__Builder.____Unit___Builder). `anyOf` should be added; there's no way outside of composing assertions to get similar functionality. For example, it is difficult to assert that a subject...

I agree with this, and passing `null` will also prevent memory leaks caused by references on the application side. Some might view `null`-valued parameters as poor API design, however. Google...

Thanks. I was just thinking that a second callback might be more appropriate, since taking these references might influence GC unnecessarily... for example, if you take a reference to the...

A replacement (or delegate) for the ICU RelativeDateTimeFormatter would be a useful addition. The use case is to format localized absolute times, e.g. "today", "yesterday", and "last week".

AFAICT, the only indentation-related change needed is to align expressions with `in`. I did this by adding the following to `nix-mode-hook`: ```emacs-lisp (smie-config-local '((0 :after "in" nil))) ``` Do we...

What's the status of this PR? It would be a useful feature for our codebase, FWIW.

`kotlinx.coroutines` has a `native-mt` artifact for experimental native multithreading. Ktor has been using it for some time.

I would love for this to happen, btw. If this is something that would be better suited for me to implement in `android-nixpkgs` I would appreciate pointers for porting the...

Thanks, I'll take a look. I've been working on trying to use Gradle's internal APIs for this, but if that solution works I would be satisfied.