-
Notifications
You must be signed in to change notification settings - Fork 0
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
de3ab9d
commit 829ff82
Showing
135 changed files
with
856 additions
and
1,505 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
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
2 changes: 1 addition & 1 deletion
2
...bs/components/ContextMenuScope.android.kt → ...ui/components/ContextMenuScope.android.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
3 changes: 3 additions & 0 deletions
3
...src/androidMain/kotlin/io/github/jan/einkaufszettel/app/ui/components/Shortcut.android.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,3 @@ | ||
package io.github.jan.einkaufszettel.app.ui.components | ||
|
||
actual suspend fun readClipboard(): String = "" |
2 changes: 1 addition & 1 deletion
2
...tel/ui/screen/login/AuthScreen.android.kt → ...kaufszettel/auth/ui/AuthScreen.android.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
34 changes: 0 additions & 34 deletions
34
composeApp/src/androidMain/kotlin/io/github/jan/einkaufszettel/di/uiModule.android.kt
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
.../recipes/components/RecipeCard.android.kt → ...cipes/ui/components/RecipeCard.android.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
2 changes: 1 addition & 1 deletion
2
.../data/local/DateTimerFormatter.android.kt → .../data/local/DateTimerFormatter.android.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
2 changes: 1 addition & 1 deletion
2
...local/db/DatabaseDriverFactory.android.kt → ...local/db/DatabaseDriverFactory.android.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
12 changes: 12 additions & 0 deletions
12
...in/kotlin/io/github/jan/einkaufszettel/root/data/local/image/LocalImageFetcher.android.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,12 @@ | ||
package io.github.jan.einkaufszettel.root.data.local.image | ||
|
||
import android.graphics.BitmapFactory | ||
import coil3.Image | ||
import coil3.annotation.ExperimentalCoilApi | ||
import coil3.asCoilImage | ||
|
||
@OptIn(ExperimentalCoilApi::class) | ||
actual fun createImage(localImageData: LocalImageData): Image { | ||
val bitmap = BitmapFactory.decodeByteArray(localImageData.data, 0, localImageData.data.size) | ||
return bitmap.asCoilImage() | ||
} |
2 changes: 1 addition & 1 deletion
2
...a/local/image/LocalImageReader.android.kt → ...a/local/image/LocalImageReader.android.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
4 changes: 2 additions & 2 deletions
4
...nkaufszettel/di/databaseModule.android.kt → ...szettel/root/di/databaseModule.android.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
4 changes: 2 additions & 2 deletions
4
.../einkaufszettel/di/localModule.android.kt → ...aufszettel/root/di/localModule.android.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
2 changes: 1 addition & 1 deletion
2
...jan/einkaufszettel/theme/Theme.android.kt → ...aufszettel/root/ui/theme/Theme.android.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
3 changes: 0 additions & 3 deletions
3
...ain/kotlin/io/github/jan/einkaufszettel/ui/screen/app/tabs/components/Shortcut.android.kt
This file was deleted.
Oops, something went wrong.
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
4 changes: 2 additions & 2 deletions
4
.../einkaufszettel/ui/screen/app/AppState.kt → ...hub/jan/einkaufszettel/app/ui/AppState.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
5 changes: 1 addition & 4 deletions
5
...ttel/ui/screen/app/tabs/AppStateScreen.kt → ...n/einkaufszettel/app/ui/AppStateScreen.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
17 changes: 17 additions & 0 deletions
17
composeApp/src/commonMain/kotlin/io/github/jan/einkaufszettel/app/ui/Tabs.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,17 @@ | ||
package io.github.jan.einkaufszettel.app.ui | ||
|
||
import io.github.jan.einkaufszettel.home.ui.HomeTab | ||
import io.github.jan.einkaufszettel.recipes.ui.RecipesTab | ||
import io.github.jan.einkaufszettel.settings.ui.SettingsTab | ||
import io.github.jan.einkaufszettel.shops.ui.ShopsTab | ||
|
||
object Tabs { | ||
|
||
val ALL = listOf( | ||
HomeTab, | ||
ShopsTab, | ||
RecipesTab, | ||
SettingsTab | ||
) | ||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
...creen/app/tabs/components/CreateButton.kt → ...szettel/app/ui/components/CreateButton.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
Oops, something went wrong.