Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

zTrap/RxSlideUp

Repository files navigation

RxSlideUp: Reactive listeners for SlideUp library

Download

Install

gradle

implementation 'ru.ztrap:RxSlideUp2:2.0.1'

maven

<dependency>
  <groupId>ru.ztrap</groupId>
  <artifactId>RxSlideUp2</artifactId>
  <version>2.0.1</version>
</dependency>

Usage

View slideView = findViewById(R.id.slideView);
SlideUp slideUp = new SlideUp.Builder(slideView)
                .withStartState(SlideUp.State.HIDDEN)
                .withStartGravity(Gravity.BOTTOM)
                .build();

//listening SlideUp.Listener.Events
RxSlideUp.events(slideUp).subscribe();

//listening SlideUp.Listener.Slide
RxSlideUp.slide(slideUp).subscribe();

//listening SlideUp.Listener.Visibility
RxSlideUp.visibility(slideUp).subscribe();

That's all! Enjoy reactive programming with RxJava, SlideUp and RxSlideUp!

Developed By

License

   Copyright 2018 zTrap

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.