Skip to content

Commit 4bece6d

Browse files
committed
🔧 group/create 패키지 추가
1 parent 00c43f2 commit 4bece6d

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

presentation/src/main/java/com/whyranoid/presentation/community/group/CreateGroupFragment.kt renamed to presentation/src/main/java/com/whyranoid/presentation/community/group/create/CreateGroupFragment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.whyranoid.presentation.community.group
1+
package com.whyranoid.presentation.community.group.create
22

33
import android.os.Bundle
44
import android.view.View

presentation/src/main/java/com/whyranoid/presentation/community/group/CreateGroupViewModel.kt renamed to presentation/src/main/java/com/whyranoid/presentation/community/group/create/CreateGroupViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.whyranoid.presentation.community.group
1+
package com.whyranoid.presentation.community.group.create
22

33
import androidx.lifecycle.ViewModel
44
import androidx.lifecycle.viewModelScope

presentation/src/main/java/com/whyranoid/presentation/community/group/Event.kt renamed to presentation/src/main/java/com/whyranoid/presentation/community/group/create/Event.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.whyranoid.presentation.community.group
1+
package com.whyranoid.presentation.community.group.create
22

33
sealed class Event {
44
data class CreateGroupButtonClick(val isSuccess: Boolean = true) : Event()

presentation/src/main/java/com/whyranoid/presentation/compose/RulePicker.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import androidx.compose.runtime.remember
1313
import androidx.compose.runtime.setValue
1414
import androidx.compose.ui.Modifier
1515
import androidx.compose.ui.unit.dp
16-
import com.whyranoid.presentation.community.group.CreateGroupViewModel
16+
import com.whyranoid.presentation.community.group.create.CreateGroupViewModel
1717

1818
@Composable
1919
fun RulePicker(

presentation/src/main/res/layout/fragment_create_group.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@
44
xmlns:tools="http://schemas.android.com/tools">
55

66
<data>
7-
87
<variable
98
name="viewModel"
10-
type="com.whyranoid.presentation.community.group.CreateGroupViewModel" />
9+
type="com.whyranoid.presentation.community.group.create.CreateGroupViewModel" />
1110
</data>
1211

1312
<androidx.constraintlayout.widget.ConstraintLayout
1413
android:layout_width="match_parent"
1514
android:layout_height="match_parent"
16-
tools:context=".community.group.CreateGroupFragment">
15+
tools:context=".community.group.create.CreateGroupFragment">
1716

1817
<com.google.android.material.appbar.AppBarLayout
1918
android:id="@+id/app_bar"

0 commit comments

Comments
 (0)