Alashov Berkeli

Results 26 comments of Alashov Berkeli

> Unfortunately this approach does not work because in case of when SafeArgs plugin generates FragmentDirections it does not contain actions and arguments. Workaround: Add an action with the same...

Temporary workaround: ```kotlin @OptIn(ExperimentalMaterialApi::class, ExperimentalMaterialNavigationApi::class, InternalCoroutinesApi::class) @Composable fun rememberBottomSheetNavigator( animationSpec: AnimationSpec = SwipeableDefaults.AnimationSpec, skipHalfExpanded: Boolean = true, ): BottomSheetNavigator { val sheetState = rememberModalBottomSheetState( ModalBottomSheetValue.Hidden, animationSpec ) if (skipHalfExpanded) {...

More here: http://crashes.to/s/926b0ac4d4a

I fixed this by adding bottom margin to SnackBar. ```java public static void displaySnackBarWithBottomMargin(Snackbar snackbar, int sideMargin, int marginBottom) { final View snackBarView = snackbar.getView(); final CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams)...

You need to add https://dl.bintray.com/shinelw/maven to your repositories in `build.gradle`: ```gradle repositories { ... maven { url "https://dl.bintray.com/shinelw/maven" } } ```

This is not specific to `SlideInUpAnimator` as many other adapters I have tried have the same problem. The bug is present starting with [`2.0.1`](https://github.com/wasabeef/recyclerview-animators/commit/fc0657fd7743c3ba1b1d8490171c951dea66090a) and not present in [`2.0.0`](https://github.com/wasabeef/recyclerview-animators/commit/420fe18d3e7308e0fbca26ec22be5da77337b065). I...

Thanks @andj207, your patch https://github.com/andj207/Fetch/commit/49ca46e10d548f1bd7a94ba2cf4fef7ff5b233f7 fixes file corruption issues some of my users were facing (xperia, asus phones). I couldn't reproduce the bug myself but after testing the patch with...

Proguard rules alone didn't fix the problem in my case.

For now, you can zip `/opt/outline` on your old server and `unzip` it in `/opt`on your new server. At least it worked for me.

We could also add haptic feedback when visible action changes: ```kotlin if (enableHapticFeedbackWhenActionChanges) { LaunchedEffect(visibleAction) { if (thresholdCrossed && visibleAction != null) { hapticFeedback.performHapticFeedback(HapticFeedbackType.TextHandleMove) } } } ``` Not sure...