View RoundedImage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.secondtry | |
import androidx.compose.foundation.Image | |
import androidx.compose.foundation.layout.fillMaxSize | |
import androidx.compose.foundation.layout.preferredSize | |
import androidx.compose.foundation.shape.CircleShape | |
import androidx.compose.material.Card | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.layout.ContentScale |
View List.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.secondtry | |
import androidx.compose.foundation.lazy.LazyColumnFor | |
import androidx.compose.runtime.Composable | |
import kotlin.time.ExperimentalTime | |
@ExperimentalTime | |
@Composable | |
fun WallpostsList(list: ArrayList<Wallpost>) { |
View RootActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.secondtry | |
import android.os.Bundle | |
import android.view.LayoutInflater | |
import androidx.appcompat.app.AppCompatActivity | |
import androidx.compose.ui.platform.setContent | |
import androidx.lifecycle.Observer | |
import org.koin.android.viewmodel.ext.android.viewModel | |
import kotlin.time.ExperimentalTime |
View ComposableRowsCols.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.secondtry | |
import androidx.compose.foundation.Image | |
import androidx.compose.foundation.Text | |
import androidx.compose.foundation.layout.* | |
import androidx.compose.material.Divider | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.graphics.Color | |
import androidx.compose.ui.layout.layoutId |
View MyScreen.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.secondtry | |
import androidx.compose.foundation.Image | |
import androidx.compose.foundation.Text | |
import androidx.compose.foundation.layout.* | |
import androidx.compose.material.Divider | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.graphics.Color | |
import androidx.compose.ui.res.vectorResource |