add paging to home screen tabs

This commit is contained in:
Owen LeJeune
2022-09-02 20:44:12 -04:00
parent ec12621743
commit 00e728b48c
5 changed files with 168 additions and 37 deletions

View File

@@ -7,12 +7,12 @@ plugins {
def composeVersion = "1.2.0-beta03"
android {
compileSdkVersion 32
compileSdkVersion 33
defaultConfig {
applicationId "com.owenlejeune.tvtime"
minSdkVersion 23
targetSdkVersion 32
targetSdkVersion 33
versionCode = 1
versionName = "1.0"
@@ -72,7 +72,7 @@ dependencies {
def compose_material3 = "1.0.0-alpha13"
def compose_accompanist = "0.24.10-beta"
def compose_navigation = "2.4.2"
def compose_paging = "1.0.0-alpha15"
def compose_paging = "1.0.0-alpha16"
def compose_constraint_layout = "1.0.1"
def compose_activity = "1.4.0"
implementation "androidx.compose.ui:ui:$compose"
@@ -89,6 +89,7 @@ dependencies {
implementation "androidx.navigation:navigation-compose:$compose_navigation"
implementation "androidx.paging:paging-compose:$compose_paging"
implementation "androidx.constraintlayout:constraintlayout-compose:$compose_constraint_layout"
implementation "androidx.paging:paging-compose:$compose_paging"
// material you
def monet_compat = "0.4.1"