Kotlin DSL for ViewPager and FragmentPagerAdapter
viewPager.apply {
fragmentPagerAdapter(pageCount = 3, fragmentManager = supportFragmentManager) {
pages { position ->
when (position) {
0 -> Pair(InputFragment(), "Entries")
1 -> Pair(OutputFragment(), "Result")
2 -> Pair(AboutFragment(), "About Us")
else -> throw Exception("¯\\_(ツ)_/¯")
}
}
onPageSelected { position ->
//nice moves go here.
}
clipToPadding = false
offscreenPageLimit = 2
}
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency:
dependencies {
implementation 'com.github.mhashim6:ViewPagerDSL:1.0.2'
}