Реструктуризация проекта

This commit is contained in:
Roman Pytkov
2026-03-02 08:03:48 +03:00
parent a22b29f777
commit 664b04e698
25 changed files with 49 additions and 146 deletions

View File

@@ -1,4 +1,4 @@
package com.github.nullptroma.wallenc
package com.github.nullptroma.wallenc.app
import android.os.Bundle
import android.widget.Toast
@@ -18,10 +18,7 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import androidx.hilt.navigation.compose.hiltViewModel
import com.github.nullptroma.wallenc.ui.screens.main.MainScreen
import com.github.nullptroma.wallenc.ui.screens.main.MainViewModel
import com.github.nullptroma.wallenc.ui.theme.WallencTheme
import com.github.nullptroma.wallenc.app.ui.theme.WallencTheme
import com.yandex.authsdk.YandexAuthLoginOptions
import com.yandex.authsdk.YandexAuthOptions
import com.yandex.authsdk.YandexAuthResult

View File

@@ -1,4 +1,4 @@
package com.github.nullptroma.wallenc
package com.github.nullptroma.wallenc.app
import android.app.Application
import dagger.hilt.android.HiltAndroidApp

View File

@@ -1,4 +1,4 @@
package com.github.nullptroma.wallenc.ui.screens.main
package com.github.nullptroma.wallenc.app.ui.screens.main
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column

View File

@@ -0,0 +1,3 @@
package com.github.nullptroma.wallenc.app.ui.screens.main
data class MainScreenState(val value: String)

View File

@@ -1,4 +1,4 @@
package com.github.nullptroma.wallenc.ui.screens.main
package com.github.nullptroma.wallenc.app.ui.screens.main
import androidx.lifecycle.ViewModel
import dagger.hilt.android.lifecycle.HiltViewModel

View File

@@ -1,4 +1,4 @@
package com.github.nullptroma.wallenc.ui.theme
package com.github.nullptroma.wallenc.app.ui.theme
import androidx.compose.ui.graphics.Color

View File

@@ -1,4 +1,4 @@
package com.github.nullptroma.wallenc.ui.theme
package com.github.nullptroma.wallenc.app.ui.theme
import android.os.Build
import androidx.compose.foundation.isSystemInDarkTheme

View File

@@ -1,4 +1,4 @@
package com.github.nullptroma.wallenc.ui.theme
package com.github.nullptroma.wallenc.app.ui.theme
import androidx.compose.material3.Typography
import androidx.compose.ui.text.TextStyle

View File

@@ -1,3 +0,0 @@
package com.github.nullptroma.wallenc.ui.screens.main
data class MainScreenState(val value: String)