Snacky icon indicating copy to clipboard operation
Snacky copied to clipboard

Snacky is a small library to help you adding a Snackbar to your android project.

Results 12 Snacky issues
Sort by recently updated
recently updated
newest added

Is there any way to Snacky on top of the screen?

There is no method to show the snackbar on top of the screen

Sometime, we need to custom the Snackbar's background. So I added the setter for background by drawable resource ``` Snacky.builder() .setBackgroundResource(R.drawable.shape_background_white_round_corner) ... .build() .show(); ```

`setDuration()` needs a positive and greater than Zero number, however, all durations are negative or zero. Android studio error: code = `setDuration(Snacky.LENGTH_LONG)` error = > Must be one of: BaseTransientBottomBar.LENGTH_INDEFINITE,...

Hi, I see in consumer-proguard-rules.pro these lines.: -keep public class * { public protected *; } if we include this library in a multi module project, Proguard keep ALL classes,...

feedback wanted

I want my snackbar to show up after a process but never dismiss, even after a click on the action button

Hello. On one fragment I have lots of different snackbars to show. I don't want to have inner callback class for each of actions. How to do that?

question

Hello, It would be nice to have some limitation to Icon size. When I use bigger icon The view is just getting bigger and it is breaking the design.

Is it possible to dismiss the Snackbar on an event? Is there a dismiss() method I can call or something?