accompanist icon indicating copy to clipboard operation
accompanist copied to clipboard

A collection of extension libraries for Jetpack Compose

Results 138 accompanist issues
Sort by recently updated
recently updated
newest added

I'm trying to implement modal transition: new screen slides in from bottom and slides out back. Expected behaviour: Slide in animation works fine, but slide out animation doesn't - because...

Using something like this: val cameraPermissionState = rememberPermissionState(Manifest.permission.CAMERA) LaunchedEffect(cameraPermissionState.status) { cameraPermissionState.launchPermissionRequest() } if (cameraPermissionState.status.isGranted) { } else { } works when the user chooses something from the dialog. Those result...

Hello I'm trying to use 2 HorizontalPagers - One inside another. The first one display items correctly but if I duplicate the same logic to the nested one - it...

I have a case, where some highly secure banking site loads the url twice in a quick succession - do not know if it is a bug on their side...

Since the `topBar` is placed visually above the rest of the main content in the custom `Scaffold` implementation, it's expected that it would come before the `content` when navigating with...

waiting on dependency
insets

**Is your feature request related to a problem? Please describe.** Currently to achieve with `HorizontalPager` displaying partially next/previous page we have to define `contentPaddings`. However it is not always desirable....

enhancement
waiting on dependency

**Description** There's no easy way to get a reference to the current `Window` in Compose so it would be useful to have a method inside `SystemUiController` that can call `WindowCompat.setDecorFitsSystemWindows(Window,...

**Description** `AnimatedContent` supports setting a z-order on the transitions which can be useful for navigation transitions. For example when trying to implement a "slide from bottom" transition, the enter transition...

stale

Hello! I've noticed that if I replace basic Scaffold with a new one from Insets library my cutout shape disappears. **Steps to reproduce** Just replace default Scaffold with a new...

insets

Actually calling ``` val systemUiController = rememberSystemUiController() SideEffect { systemUiController.isStatusBarVisible = false } ``` hides correctly the status bar, but content doesn't fit the status bar empty space. I have...