-
Notifications
You must be signed in to change notification settings - Fork 4
Home
Prem Ankur edited this page Dec 27, 2018
·
5 revisions
Welcome to the facilis wiki!
- First, create an activity with
BaseCardActivity()
as superClass and return your fragment container ViewGroup(generally an empty FrameLayout) in getFragmentContainer()
class MainActivity : BaseCardActivity() {
//...
override fun getFragmentContainer(): Int = R.id.fragmentContainer
}
- After that you can push fragments or popup using
pushFragment(BaseFragment)
orpushPopup(BaseDialogFragment)
methods