-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2fc197
commit 47fa756
Showing
8 changed files
with
108 additions
and
69 deletions.
There are no files selected for viewing
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
11 changes: 11 additions & 0 deletions
11
...a/com/anthonyla/paperize/feature/wallpaper/presentation/folder_view_screen/FolderEvent.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.anthonyla.paperize.feature.wallpaper.presentation.folder_view_screen | ||
|
||
import com.anthonyla.paperize.feature.wallpaper.domain.model.Folder | ||
|
||
sealed class FolderEvent { | ||
data object Reset: FolderEvent() | ||
|
||
data class LoadFolderView( | ||
val folder: Folder? = null | ||
): FolderEvent() | ||
} |
8 changes: 8 additions & 0 deletions
8
...a/com/anthonyla/paperize/feature/wallpaper/presentation/folder_view_screen/FolderState.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.anthonyla.paperize.feature.wallpaper.presentation.folder_view_screen | ||
|
||
import com.anthonyla.paperize.feature.wallpaper.domain.model.Folder | ||
import com.anthonyla.paperize.feature.wallpaper.domain.model.Wallpaper | ||
|
||
data class FolderState( | ||
val folder: Folder? = null, | ||
) |
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
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
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
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
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