Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
![]() |
facdb14f31 |
3 changed files with 11 additions and 3 deletions
|
@ -1,13 +1,16 @@
|
|||
package be.ugent.sel.studeez.common.composable
|
||||
|
||||
import androidx.compose.foundation.layout.Box
|
||||
import androidx.compose.foundation.layout.PaddingValues
|
||||
import androidx.compose.foundation.layout.RowScope
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.material.*
|
||||
import androidx.compose.material.icons.Icons
|
||||
import androidx.compose.material.icons.filled.Edit
|
||||
import androidx.compose.material.icons.filled.Menu
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.rememberCoroutineScope
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import be.ugent.sel.studeez.R
|
||||
import be.ugent.sel.studeez.common.composable.drawer.Drawer
|
||||
|
@ -67,7 +70,12 @@ fun PrimaryScreenTemplate(
|
|||
)
|
||||
}
|
||||
) {
|
||||
content(it)
|
||||
Box(
|
||||
modifier = Modifier.padding(bottom = it.calculateBottomPadding())
|
||||
) {
|
||||
|
||||
content(it)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ fun FeedEntry(
|
|||
}
|
||||
Text(
|
||||
text = HoursMinutesSeconds(feedEntry.totalStudyTime).toString(),
|
||||
modifier = Modifier.weight(6f),
|
||||
modifier = Modifier.weight(8f),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -106,7 +106,7 @@ fun FriendsFeedEntry(
|
|||
) {
|
||||
Column(
|
||||
verticalArrangement = Arrangement.spacedBy(0.dp),
|
||||
modifier = Modifier.weight(10f),
|
||||
modifier = Modifier.weight(8f),
|
||||
) {
|
||||
Text(
|
||||
text = "$name studied for ${feedEntry.subJectName}",
|
||||
|
|
Reference in a new issue