Prepare profile screen
This commit is contained in:
parent
eccc58782a
commit
8fdff0e02a
@ -0,0 +1,9 @@
|
||||
package com.nto.presentation.screens.profileScreen
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.ui.Modifier
|
||||
|
||||
@Composable
|
||||
fun ProfileScreen(modifier: Modifier = Modifier) {
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.nto.presentation.screens.profileScreen
|
||||
|
||||
data class ProfileState(
|
||||
val firstName: String,
|
||||
val secondName: String,
|
||||
val thirdName: String,
|
||||
val lastOpen: String
|
||||
)
|
@ -0,0 +1,10 @@
|
||||
package com.nto.presentation.screens.profileScreen
|
||||
|
||||
import androidx.lifecycle.ViewModel
|
||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||
import javax.inject.Inject
|
||||
|
||||
@HiltViewModel
|
||||
class ProfileViewModel @Inject constructor() : ViewModel() {
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user