Cyrus Bakhtiari-Haftlang

Results 9 comments of Cyrus Bakhtiari-Haftlang
trafficstars

Out of curiosity, @ansman, is the attribute fontPathMedium included in the theme whose context the TextView is using? "fonts/something_something.ttf"

Out of curiosity, @ansman, is the attribute fontPathMedium included in the theme whose context the TextView is using? ``` "fonts/something_something.ttf" ```

Tried this? ```kotlin private class NoSpecialTreatmentOfH1H2Plugin : AbstractMarkwonPlugin() { override fun configureSpansFactory(builder: MarkwonSpansFactory.Builder) { builder.setFactory(Heading::class.java) { configuration, props -> HeadingSpanModified( configuration.theme(), CoreProps.HEADING_LEVEL.require(props) ) } } } private class HeadingSpanModified(theme: MarkwonTheme,...

Please merge these changes! 👍

I managed to solve a similar issue: https://github.com/chrisbanes/insetter/assets/14194998/cddbd19f-d74c-4e13-8a7e-2a298ac87a59 Notice the toolbar not being correctly inset due to `CollapsingToolbarLayout` consumption of insets. Next is after forcefully removing `OnApplyWindowInsetsListener` from `CollapsingToolbarLayout` i.e....

Could you consider merging, and in a later stage re-evaluate the need for it?

Could you consider merging, and in a later stage re-evaluate the need for it? @evant

```groovy android { flavorDimensions "brand", "environment", "audience" buildTypes { debug {} release {} } productFlavors { stage { dimension "environment" } production { dimension "environment" } company1 { dimension "brand"...