adnbal89

Results 3 issues of adnbal89

Hello, I'm implementing a terms and conditions slide, ``` final SimpleSlide.Builder termsSlide = new SimpleSlide.Builder(); termsSlide.title(R.string.terms_and_conditions) .image(R.drawable.terms_and_conditions) .description(R.string.please_accept_to_proceed) .background(R.color.color_terms) .backgroundDark(R.color.color_dark_terms) .scrollable(false) .canGoBackward(false).canGoForward(false) .buttonCtaLabel("Accept") .buttonCtaClickListener(new View.OnClickListener() { @Override public void onClick(View...

Hello, I noticed that ``` addSlide( new SimpleSlide.Builder() .title(R.string.terms_and_conditions) .description(R.string.terms_and_conditions) .background(R.color.color_canteen) .backgroundDark(R.color.color_dark_canteen) .canGoBackward(false) .canGoForward(false) .build(); termsSlide) ); ``` **.canGoBackward(false) .canGoForward(false)** is not working if added slide is the **1st** one....

Hello, Could you please clarify how to implement post method with a use case, because post method requires request body(json) and our `UseCase` doesn't support a Model to be passed...