Created
June 25, 2017 06:41
-
-
Save bangarharshit/9ced2788f286d5cbd36c6d8074f0b758 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.harshitbangar.mvpconductor.BaseController; | |
public class HomeController extends BaseController<HomeView> { | |
@Override | |
protected HomeView createView(@NonNull LayoutInflater inflater, @NonNull ViewGroup container) { | |
return (HomeView) inflater.inflate(R.layout.home, container, false); | |
} | |
public void backPress() { | |
getRouter().popCurrentController(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment