Łukasz Wasylkowski

Results 24 issues of Łukasz Wasylkowski

Currently it's a bit ugly to for example show loadtoast, and on success finish activity - toast's animation plays together with activity's. It would be nice to have `LoadToast#isShowing()` method,...

Espresso still depends on Hamcrest 1.3 even though the latest release is 2.2 and only bumping it locally is [not straightforward](http://hamcrest.org/JavaHamcrest/distributables.html#upgrading-from-hamcrest-1.x)

Kotest 5.6.2 We encountered some weird Kotest behavior and it's unclear to us if it's a bug or we're doing something wrong. Basically when using coroutines' `runTest` and `backgroundScope`, if...

bug 🐛
framework 🏗️

*Lottie is supported and developed on nights and weekends. Issues from [Lottie sponsors](https://github.com/users/gpeal/sponsorship) will be prioritized.* **Is your feature request related to a problem? Please describe.** It's unclear whether https://play.google.com/store/apps/details?id=com.airbnb.lottie...

New feature

**Description:** Simple bottom sheet that starts `expanded` and has `fitToContents=false`: ```kotlin class MyBottomSheet : BottomSheetDialogFragment() { override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?) = inflater.inflate(R.layout.fragment_second, container, false) override fun...

bug
Widget: BottomSheet

The sample app doesn't compile at the following commit: https://github.com/GradleUp/auto-manifest/commit/e13dfa78f39758b4b66987052d59236266847d01 It looks like existing package in the `AndroidManifest.xml` is always overridden by the plugin. That's a behavior change compared to...

Ending files with line break is a good practice that helps to ensure the file is properly read by different tools, see https://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline

steps to reproduce: Try to record screenshots with Gradle 7.1 and configuration cache enabled, e.g. `./gradlew views:record -Dorg.gradle.unsafe.configuration-cache=true` Expected result: screenshots are recorded Actual result: build fails with the errors...

I wanted to ask about the library status: - last non-trivial commits are from over a year ago - based on open dependabot PRs, the library is not targeting latest...

According to the documentation, `Modifier.composed` is discouraged due to performance concerns. The recommended API is now `Modifier.Node` and friends: https://developer.android.com/develop/ui/compose/custom-modifiers#implement-custom, or alternatively (but not without downsides) a `@Composable Modifier.modifierFactory(): Modifier`...