Sung-Ho Lee

Results 8 issues of Sung-Ho Lee

This code is expected working: ``` mDrawerLayout = new DrawerLayout(ctx) { new STextView("Me also too") this += new SLinearLayout { STextView("Action 1") STextView("Action 2") STextView("Action 3") }..background(0xff393e44) } ```

[Android kickstartr](http://androidkickstartr.com/) is an easy Android project template generator. Add a Scaloid support on Androidkickstartr.

major

Thank you for making this amazing project. I am using this for serializing my classes, so I defined a `JsonWriter`. By default, spray-json does not provide `JsonWriter` for `Seq`: ```scala...

Is there any way to capture the name of argument currently being assigned? I tried this but it was not. ```scala case class Foo(bar: String) def provider(implicit name: sourcecode.Name): String...

```scala class MyBuilder { val builder = new StringBuilder def add[T](txt: sourcecode.Text[T]): MyBuilder = { builder append txt.source this } def +[T](txt: sourcecode.Text[T]): MyBuilder = { builder append txt.source this...

`object BuildInfo` exists in both `spire-platform_2.11-0.16.0.jar` and `spire-util_2.11-0.16.0.jar`. Classes in `package spire.scalacompat` exists in both `spire-platform_2.11-0.16.2.jar` and `spire-util_2.11-0.16.2.jar`. This duplication prevents me to use R8 Android build tool.

When I tried migrate my [imperative style](https://zio.dev/zio-http/reference/http-codec/#imperative-programming) `Route` implementations to [declarative style](https://zio.dev/zio-http/reference/http-codec/#declarative-programming), I was frustrated by: 1. cannot access `Request` object 2. cannot return `Response` object 3. exceptions must be...

enhancement