Skip to content

Instantly share code, notes, and snippets.

@bangarharshit
Created June 25, 2017 06:41
Show Gist options
  • Save bangarharshit/9ced2788f286d5cbd36c6d8074f0b758 to your computer and use it in GitHub Desktop.
Save bangarharshit/9ced2788f286d5cbd36c6d8074f0b758 to your computer and use it in GitHub Desktop.
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