feat(creator): 시리즈 탭 pager 연결을 추가한다

This commit is contained in:
2026-06-20 04:50:37 +09:00
parent 92cea6d3ee
commit fcf35e2513
2 changed files with 11 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ import androidx.viewpager2.adapter.FragmentStateAdapter
import kr.co.vividnext.sodalive.v2.creator.channel.audio.CreatorChannelAudioFragment
import kr.co.vividnext.sodalive.v2.creator.channel.live.CreatorChannelLiveFragment
import kr.co.vividnext.sodalive.v2.creator.channel.model.CreatorChannelTab
import kr.co.vividnext.sodalive.v2.creator.channel.series.CreatorChannelSeriesFragment
class CreatorChannelPagerAdapter(
activity: FragmentActivity,
@@ -21,6 +22,7 @@ class CreatorChannelPagerAdapter(
CreatorChannelTab.Home -> CreatorChannelHomeFragment.newInstance(creatorId)
CreatorChannelTab.Live -> CreatorChannelLiveFragment.newInstance(creatorId)
CreatorChannelTab.Audio -> CreatorChannelAudioFragment.newInstance(creatorId)
CreatorChannelTab.Series -> CreatorChannelSeriesFragment.newInstance(creatorId)
else -> CreatorChannelPlaceholderFragment.newInstance(tab)
}
}