Skip to content

Commit

Permalink
Fixes #74
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed Aug 27, 2024
1 parent 62413aa commit e1dfd8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/src/main/java/org/samo_lego/canta/ui/CantaApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.pager.HorizontalPager
import androidx.compose.foundation.pager.rememberPagerState
Expand Down
5 changes: 5 additions & 0 deletions app/src/main/java/org/samo_lego/canta/ui/component/AppList.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.material3.CircularProgressIndicator
Expand Down Expand Up @@ -100,6 +102,9 @@ fun AppList(
}
)
}
item {
Spacer(modifier = Modifier.height(48.dp))
}
}
} else {
Box(
Expand Down

0 comments on commit e1dfd8f

Please sign in to comment.