Andrius Semionovas

Results 26 comments of Andrius Semionovas

Someone should update the description of this repo about deprecation.

Probably, Android doesn't support this font family. This lib is a just simple wrapper for android spans. This `font(...)` is using [TypefaceSpan](https://developer.android.com/reference/android/text/style/TypefaceSpan.html). I don't think there are a solution through...

Hello, Could you show a code example using `SpannableStringBuilder` of this feature?

This library is just a wrapper for `SpannableStringBuilder` and helps avoid labor work for calculating span positions. However, this problem looks quite interesting, and maybe I could make some tweaks...

Yes, sure. There are few requirements: - the source should be compatible with java. You might use overloading - same logic should be applied to replace for consistency

+1. I am in the same situation, two remote machines in two different locations. All team is using mainframer and configs are in the repo. Sometimes I accidentally push these...

Naming depends. I personally and my colleagues prefer shorter. It is pretty intuitive, heavily used, especially my beloved `visibleIf(...)`. However, the interface has to be consistent, so I don't see...

Launching gradle with JDK8 works like a charm

I checked and seems doesn't work. It could be easily checked at my repository [in this file](https://github.com/neworld/ClimbTimer/blob/26eb5e0ed272b6dcc88119c7261693177bf6861c/app/src/main/java/lt/neworld/climbtimer/Main.kt) That `TimerController` in the [Main.kt:14](https://github.com/neworld/ClimbTimer/blob/26eb5e0ed272b6dcc88119c7261693177bf6861c/app/src/main/java/lt/neworld/climbtimer/Main.kt#L14) could be linked to [TimerController.kt](https://github.com/neworld/ClimbTimer/blob/26eb5e0ed272b6dcc88119c7261693177bf6861c/app/src/main/java/lt/neworld/climbtimer/controllers/TimerController.kt) The path from...

If I understand correctly, github formats kotlin code a bit different. In Java all class names are wrapped in span, but in kotlin isn't ``` primaryStage . scene = TimerController...