Prepare profile screen

This commit is contained in:
Nymos 2025-02-18 19:46:13 +03:00
parent eccc58782a
commit 8fdff0e02a
3 changed files with 27 additions and 0 deletions

View File

@ -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) {
}

View File

@ -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
)

View File

@ -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() {
}