Browse Source

Rename app folder to todoapp

pull/10/head
Arkadii Ivanov 4 years ago
parent
commit
36a9f09e63
  1. 0
      examples/todoapp/.gitignore
  2. 0
      examples/todoapp/README.md
  3. 0
      examples/todoapp/android/.gitignore
  4. 0
      examples/todoapp/android/build.gradle.kts
  5. 0
      examples/todoapp/android/src/main/AndroidManifest.xml
  6. 0
      examples/todoapp/android/src/main/java/example/todo/android/App.kt
  7. 0
      examples/todoapp/android/src/main/java/example/todo/android/Color.kt
  8. 0
      examples/todoapp/android/src/main/java/example/todo/android/MainActivity.kt
  9. 0
      examples/todoapp/android/src/main/java/example/todo/android/Shape.kt
  10. 0
      examples/todoapp/android/src/main/java/example/todo/android/Theme.kt
  11. 0
      examples/todoapp/android/src/main/java/example/todo/android/Type.kt
  12. 0
      examples/todoapp/android/src/main/res/drawable-v24/ic_launcher_foreground.xml
  13. 0
      examples/todoapp/android/src/main/res/drawable/ic_launcher_background.xml
  14. 0
      examples/todoapp/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
  15. 0
      examples/todoapp/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
  16. 0
      examples/todoapp/android/src/main/res/mipmap-hdpi/ic_launcher.png
  17. 0
      examples/todoapp/android/src/main/res/mipmap-hdpi/ic_launcher_round.png
  18. 0
      examples/todoapp/android/src/main/res/mipmap-mdpi/ic_launcher.png
  19. 0
      examples/todoapp/android/src/main/res/mipmap-mdpi/ic_launcher_round.png
  20. 0
      examples/todoapp/android/src/main/res/mipmap-xhdpi/ic_launcher.png
  21. 0
      examples/todoapp/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png
  22. 0
      examples/todoapp/android/src/main/res/mipmap-xxhdpi/ic_launcher.png
  23. 0
      examples/todoapp/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
  24. 0
      examples/todoapp/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png
  25. 0
      examples/todoapp/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
  26. 0
      examples/todoapp/android/src/main/res/values/strings.xml
  27. 0
      examples/todoapp/build.gradle.kts
  28. 0
      examples/todoapp/buildSrc/.gitignore
  29. 0
      examples/todoapp/buildSrc/build.gradle.kts
  30. 0
      examples/todoapp/buildSrc/buildSrc/.gitignore
  31. 0
      examples/todoapp/buildSrc/buildSrc/build.gradle.kts
  32. 0
      examples/todoapp/buildSrc/buildSrc/src/main/kotlin/Deps.kt
  33. 0
      examples/todoapp/buildSrc/src/main/kotlin/multiplatform-compose-setup.gradle.kts
  34. 0
      examples/todoapp/buildSrc/src/main/kotlin/multiplatform-setup.gradle.kts
  35. 0
      examples/todoapp/common/add/.gitignore
  36. 0
      examples/todoapp/common/add/build.gradle.kts
  37. 0
      examples/todoapp/common/add/src/androidMain/AndroidManifest.xml
  38. 0
      examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/TodoAdd.kt
  39. 0
      examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/integration/TodoAddImpl.kt
  40. 0
      examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/integration/TodoAddStoreDatabase.kt
  41. 0
      examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/store/TodoAddStore.kt
  42. 0
      examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/store/TodoAddStoreProvider.kt
  43. 0
      examples/todoapp/common/database/.gitignore
  44. 0
      examples/todoapp/common/database/build.gradle.kts
  45. 0
      examples/todoapp/common/database/src/androidMain/AndroidManifest.xml
  46. 0
      examples/todoapp/common/database/src/androidMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt
  47. 0
      examples/todoapp/common/database/src/androidMain/kotlin/example/todo/common/database/TodoDatabaseDriverFactory.kt
  48. 0
      examples/todoapp/common/database/src/commonMain/kotlin/example/todo/common/database/ReaktiveExt.kt
  49. 0
      examples/todoapp/common/database/src/commonMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt
  50. 0
      examples/todoapp/common/database/src/commonMain/sqldelight/example/todo/common/database/TodoDatabase.sq
  51. 0
      examples/todoapp/common/database/src/desktopMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt
  52. 0
      examples/todoapp/common/database/src/desktopMain/kotlin/example/todo/common/database/TodoDatabaseDriverFactory.kt
  53. 0
      examples/todoapp/common/edit/.gitignore
  54. 0
      examples/todoapp/common/edit/build.gradle.kts
  55. 0
      examples/todoapp/common/edit/src/androidMain/AndroidManifest.xml
  56. 0
      examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/TodoEdit.kt
  57. 0
      examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/TodoItem.kt
  58. 0
      examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/integration/TodoEditImpl.kt
  59. 0
      examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/integration/TodoEditStoreDatabase.kt
  60. 0
      examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/store/TodoEditStore.kt
  61. 0
      examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/store/TodoEditStoreProvider.kt
  62. 0
      examples/todoapp/common/list/.gitignore
  63. 0
      examples/todoapp/common/list/build.gradle.kts
  64. 0
      examples/todoapp/common/list/src/androidMain/AndroidManifest.xml
  65. 0
      examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/TodoList.kt
  66. 0
      examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/integration/TodoListImpl.kt
  67. 0
      examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/integration/TodoListStoreDatabase.kt
  68. 0
      examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoItem.kt
  69. 0
      examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoListStore.kt
  70. 0
      examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoListStoreProvider.kt
  71. 0
      examples/todoapp/common/list/src/commonTest/kotlin/example/todo/common/list/integration/TodoListTest.kt
  72. 0
      examples/todoapp/common/list/src/commonTest/kotlin/example/todo/common/list/store/TestTodoListStoreDatabase.kt
  73. 0
      examples/todoapp/common/list/src/commonTest/kotlin/example/todo/common/list/store/TodoListStoreTest.kt
  74. 0
      examples/todoapp/common/main/.gitignore
  75. 0
      examples/todoapp/common/main/build.gradle.kts
  76. 0
      examples/todoapp/common/main/src/androidMain/AndroidManifest.xml
  77. 0
      examples/todoapp/common/main/src/commonMain/kotlin/example/todo/common/main/TodoMain.kt
  78. 0
      examples/todoapp/common/main/src/commonMain/kotlin/example/todo/common/main/integration/ListOutputToOutput.kt
  79. 0
      examples/todoapp/common/main/src/commonMain/kotlin/example/todo/common/main/integration/TodoMainImpl.kt
  80. 0
      examples/todoapp/common/root/.gitignore
  81. 0
      examples/todoapp/common/root/build.gradle.kts
  82. 0
      examples/todoapp/common/root/src/androidMain/AndroidManifest.xml
  83. 0
      examples/todoapp/common/root/src/commonMain/kotlin/example/todo/common/root/TodoRoot.kt
  84. 0
      examples/todoapp/common/root/src/commonMain/kotlin/example/todo/common/root/integration/TodoRootImpl.kt
  85. 0
      examples/todoapp/common/utils/.gitignore
  86. 0
      examples/todoapp/common/utils/build.gradle.kts
  87. 0
      examples/todoapp/common/utils/src/androidMain/AndroidManifest.xml
  88. 0
      examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/Binder.kt
  89. 0
      examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/Component.kt
  90. 0
      examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/CrossfadeExt.kt
  91. 0
      examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/InstanceKeeperExt.kt
  92. 0
      examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/ReaktiveExt.kt
  93. 0
      examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/StoreExt.kt
  94. 0
      examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/ValueComposable.kt
  95. 0
      examples/todoapp/desktop/.gitignore
  96. 0
      examples/todoapp/desktop/build.gradle.kts
  97. 0
      examples/todoapp/desktop/src/main/kotlin/example/todo/desktop/Main.kt
  98. 0
      examples/todoapp/gradle.properties
  99. 0
      examples/todoapp/gradle/wrapper/gradle-wrapper.jar
  100. 0
      examples/todoapp/gradle/wrapper/gradle-wrapper.properties
  101. Some files were not shown because too many files have changed in this diff Show More

0
examples/todo/.gitignore → examples/todoapp/.gitignore vendored

0
examples/todo/README.md → examples/todoapp/README.md

0
examples/todo/android/.gitignore → examples/todoapp/android/.gitignore vendored

0
examples/todo/android/build.gradle.kts → examples/todoapp/android/build.gradle.kts

0
examples/todo/android/src/main/AndroidManifest.xml → examples/todoapp/android/src/main/AndroidManifest.xml

0
examples/todo/android/src/main/java/example/todo/android/App.kt → examples/todoapp/android/src/main/java/example/todo/android/App.kt

0
examples/todo/android/src/main/java/example/todo/android/Color.kt → examples/todoapp/android/src/main/java/example/todo/android/Color.kt

0
examples/todo/android/src/main/java/example/todo/android/MainActivity.kt → examples/todoapp/android/src/main/java/example/todo/android/MainActivity.kt

0
examples/todo/android/src/main/java/example/todo/android/Shape.kt → examples/todoapp/android/src/main/java/example/todo/android/Shape.kt

0
examples/todo/android/src/main/java/example/todo/android/Theme.kt → examples/todoapp/android/src/main/java/example/todo/android/Theme.kt

0
examples/todo/android/src/main/java/example/todo/android/Type.kt → examples/todoapp/android/src/main/java/example/todo/android/Type.kt

0
examples/todo/android/src/main/res/drawable-v24/ic_launcher_foreground.xml → examples/todoapp/android/src/main/res/drawable-v24/ic_launcher_foreground.xml

0
examples/todo/android/src/main/res/drawable/ic_launcher_background.xml → examples/todoapp/android/src/main/res/drawable/ic_launcher_background.xml

0
examples/todo/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml → examples/todoapp/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml

0
examples/todo/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml → examples/todoapp/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml

0
examples/todo/android/src/main/res/mipmap-hdpi/ic_launcher.png → examples/todoapp/android/src/main/res/mipmap-hdpi/ic_launcher.png

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

0
examples/todo/android/src/main/res/mipmap-hdpi/ic_launcher_round.png → examples/todoapp/android/src/main/res/mipmap-hdpi/ic_launcher_round.png

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

0
examples/todo/android/src/main/res/mipmap-mdpi/ic_launcher.png → examples/todoapp/android/src/main/res/mipmap-mdpi/ic_launcher.png

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

0
examples/todo/android/src/main/res/mipmap-mdpi/ic_launcher_round.png → examples/todoapp/android/src/main/res/mipmap-mdpi/ic_launcher_round.png

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

0
examples/todo/android/src/main/res/mipmap-xhdpi/ic_launcher.png → examples/todoapp/android/src/main/res/mipmap-xhdpi/ic_launcher.png

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

0
examples/todo/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png → examples/todoapp/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

0
examples/todo/android/src/main/res/mipmap-xxhdpi/ic_launcher.png → examples/todoapp/android/src/main/res/mipmap-xxhdpi/ic_launcher.png

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

0
examples/todo/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png → examples/todoapp/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

0
examples/todo/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png → examples/todoapp/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

0
examples/todo/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png → examples/todoapp/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

0
examples/todo/android/src/main/res/values/strings.xml → examples/todoapp/android/src/main/res/values/strings.xml

0
examples/todo/build.gradle.kts → examples/todoapp/build.gradle.kts

0
examples/todo/buildSrc/.gitignore → examples/todoapp/buildSrc/.gitignore vendored

0
examples/todo/buildSrc/build.gradle.kts → examples/todoapp/buildSrc/build.gradle.kts

0
examples/todo/buildSrc/buildSrc/.gitignore → examples/todoapp/buildSrc/buildSrc/.gitignore vendored

0
examples/todo/buildSrc/buildSrc/build.gradle.kts → examples/todoapp/buildSrc/buildSrc/build.gradle.kts

0
examples/todo/buildSrc/buildSrc/src/main/kotlin/Deps.kt → examples/todoapp/buildSrc/buildSrc/src/main/kotlin/Deps.kt

0
examples/todo/buildSrc/src/main/kotlin/multiplatform-compose-setup.gradle.kts → examples/todoapp/buildSrc/src/main/kotlin/multiplatform-compose-setup.gradle.kts

0
examples/todo/buildSrc/src/main/kotlin/multiplatform-setup.gradle.kts → examples/todoapp/buildSrc/src/main/kotlin/multiplatform-setup.gradle.kts

0
examples/todo/common/add/.gitignore → examples/todoapp/common/add/.gitignore vendored

0
examples/todo/common/add/build.gradle.kts → examples/todoapp/common/add/build.gradle.kts

0
examples/todo/common/add/src/androidMain/AndroidManifest.xml → examples/todoapp/common/add/src/androidMain/AndroidManifest.xml

0
examples/todo/common/add/src/commonMain/kotlin/example/todo/common/add/TodoAdd.kt → examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/TodoAdd.kt

0
examples/todo/common/add/src/commonMain/kotlin/example/todo/common/add/integration/TodoAddImpl.kt → examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/integration/TodoAddImpl.kt

0
examples/todo/common/add/src/commonMain/kotlin/example/todo/common/add/integration/TodoAddStoreDatabase.kt → examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/integration/TodoAddStoreDatabase.kt

0
examples/todo/common/add/src/commonMain/kotlin/example/todo/common/add/store/TodoAddStore.kt → examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/store/TodoAddStore.kt

0
examples/todo/common/add/src/commonMain/kotlin/example/todo/common/add/store/TodoAddStoreProvider.kt → examples/todoapp/common/add/src/commonMain/kotlin/example/todo/common/add/store/TodoAddStoreProvider.kt

0
examples/todo/common/database/.gitignore → examples/todoapp/common/database/.gitignore vendored

0
examples/todo/common/database/build.gradle.kts → examples/todoapp/common/database/build.gradle.kts

0
examples/todo/common/database/src/androidMain/AndroidManifest.xml → examples/todoapp/common/database/src/androidMain/AndroidManifest.xml

0
examples/todo/common/database/src/androidMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt → examples/todoapp/common/database/src/androidMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt

0
examples/todo/common/database/src/androidMain/kotlin/example/todo/common/database/TodoDatabaseDriverFactory.kt → examples/todoapp/common/database/src/androidMain/kotlin/example/todo/common/database/TodoDatabaseDriverFactory.kt

0
examples/todo/common/database/src/commonMain/kotlin/example/todo/common/database/ReaktiveExt.kt → examples/todoapp/common/database/src/commonMain/kotlin/example/todo/common/database/ReaktiveExt.kt

0
examples/todo/common/database/src/commonMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt → examples/todoapp/common/database/src/commonMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt

0
examples/todo/common/database/src/commonMain/sqldelight/example/todo/common/database/TodoDatabase.sq → examples/todoapp/common/database/src/commonMain/sqldelight/example/todo/common/database/TodoDatabase.sq

0
examples/todo/common/database/src/desktopMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt → examples/todoapp/common/database/src/desktopMain/kotlin/example/todo/common/database/TestDatabaseDriverFactory.kt

0
examples/todo/common/database/src/desktopMain/kotlin/example/todo/common/database/TodoDatabaseDriverFactory.kt → examples/todoapp/common/database/src/desktopMain/kotlin/example/todo/common/database/TodoDatabaseDriverFactory.kt

0
examples/todo/common/edit/.gitignore → examples/todoapp/common/edit/.gitignore vendored

0
examples/todo/common/edit/build.gradle.kts → examples/todoapp/common/edit/build.gradle.kts

0
examples/todo/common/edit/src/androidMain/AndroidManifest.xml → examples/todoapp/common/edit/src/androidMain/AndroidManifest.xml

0
examples/todo/common/edit/src/commonMain/kotlin/example/todo/common/edit/TodoEdit.kt → examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/TodoEdit.kt

0
examples/todo/common/edit/src/commonMain/kotlin/example/todo/common/edit/TodoItem.kt → examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/TodoItem.kt

0
examples/todo/common/edit/src/commonMain/kotlin/example/todo/common/edit/integration/TodoEditImpl.kt → examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/integration/TodoEditImpl.kt

0
examples/todo/common/edit/src/commonMain/kotlin/example/todo/common/edit/integration/TodoEditStoreDatabase.kt → examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/integration/TodoEditStoreDatabase.kt

0
examples/todo/common/edit/src/commonMain/kotlin/example/todo/common/edit/store/TodoEditStore.kt → examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/store/TodoEditStore.kt

0
examples/todo/common/edit/src/commonMain/kotlin/example/todo/common/edit/store/TodoEditStoreProvider.kt → examples/todoapp/common/edit/src/commonMain/kotlin/example/todo/common/edit/store/TodoEditStoreProvider.kt

0
examples/todo/common/list/.gitignore → examples/todoapp/common/list/.gitignore vendored

0
examples/todo/common/list/build.gradle.kts → examples/todoapp/common/list/build.gradle.kts

0
examples/todo/common/list/src/androidMain/AndroidManifest.xml → examples/todoapp/common/list/src/androidMain/AndroidManifest.xml

0
examples/todo/common/list/src/commonMain/kotlin/example/todo/common/list/TodoList.kt → examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/TodoList.kt

0
examples/todo/common/list/src/commonMain/kotlin/example/todo/common/list/integration/TodoListImpl.kt → examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/integration/TodoListImpl.kt

0
examples/todo/common/list/src/commonMain/kotlin/example/todo/common/list/integration/TodoListStoreDatabase.kt → examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/integration/TodoListStoreDatabase.kt

0
examples/todo/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoItem.kt → examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoItem.kt

0
examples/todo/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoListStore.kt → examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoListStore.kt

0
examples/todo/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoListStoreProvider.kt → examples/todoapp/common/list/src/commonMain/kotlin/example/todo/common/list/store/TodoListStoreProvider.kt

0
examples/todo/common/list/src/commonTest/kotlin/example/todo/common/list/integration/TodoListTest.kt → examples/todoapp/common/list/src/commonTest/kotlin/example/todo/common/list/integration/TodoListTest.kt

0
examples/todo/common/list/src/commonTest/kotlin/example/todo/common/list/store/TestTodoListStoreDatabase.kt → examples/todoapp/common/list/src/commonTest/kotlin/example/todo/common/list/store/TestTodoListStoreDatabase.kt

0
examples/todo/common/list/src/commonTest/kotlin/example/todo/common/list/store/TodoListStoreTest.kt → examples/todoapp/common/list/src/commonTest/kotlin/example/todo/common/list/store/TodoListStoreTest.kt

0
examples/todo/common/main/.gitignore → examples/todoapp/common/main/.gitignore vendored

0
examples/todo/common/main/build.gradle.kts → examples/todoapp/common/main/build.gradle.kts

0
examples/todo/common/main/src/androidMain/AndroidManifest.xml → examples/todoapp/common/main/src/androidMain/AndroidManifest.xml

0
examples/todo/common/main/src/commonMain/kotlin/example/todo/common/main/TodoMain.kt → examples/todoapp/common/main/src/commonMain/kotlin/example/todo/common/main/TodoMain.kt

0
examples/todo/common/main/src/commonMain/kotlin/example/todo/common/main/integration/ListOutputToOutput.kt → examples/todoapp/common/main/src/commonMain/kotlin/example/todo/common/main/integration/ListOutputToOutput.kt

0
examples/todo/common/main/src/commonMain/kotlin/example/todo/common/main/integration/TodoMainImpl.kt → examples/todoapp/common/main/src/commonMain/kotlin/example/todo/common/main/integration/TodoMainImpl.kt

0
examples/todo/common/root/.gitignore → examples/todoapp/common/root/.gitignore vendored

0
examples/todo/common/root/build.gradle.kts → examples/todoapp/common/root/build.gradle.kts

0
examples/todo/common/root/src/androidMain/AndroidManifest.xml → examples/todoapp/common/root/src/androidMain/AndroidManifest.xml

0
examples/todo/common/root/src/commonMain/kotlin/example/todo/common/root/TodoRoot.kt → examples/todoapp/common/root/src/commonMain/kotlin/example/todo/common/root/TodoRoot.kt

0
examples/todo/common/root/src/commonMain/kotlin/example/todo/common/root/integration/TodoRootImpl.kt → examples/todoapp/common/root/src/commonMain/kotlin/example/todo/common/root/integration/TodoRootImpl.kt

0
examples/todo/common/utils/.gitignore → examples/todoapp/common/utils/.gitignore vendored

0
examples/todo/common/utils/build.gradle.kts → examples/todoapp/common/utils/build.gradle.kts

0
examples/todo/common/utils/src/androidMain/AndroidManifest.xml → examples/todoapp/common/utils/src/androidMain/AndroidManifest.xml

0
examples/todo/common/utils/src/commonMain/kotlin/example/todo/common/utils/Binder.kt → examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/Binder.kt

0
examples/todo/common/utils/src/commonMain/kotlin/example/todo/common/utils/Component.kt → examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/Component.kt

0
examples/todo/common/utils/src/commonMain/kotlin/example/todo/common/utils/CrossfadeExt.kt → examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/CrossfadeExt.kt

0
examples/todo/common/utils/src/commonMain/kotlin/example/todo/common/utils/InstanceKeeperExt.kt → examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/InstanceKeeperExt.kt

0
examples/todo/common/utils/src/commonMain/kotlin/example/todo/common/utils/ReaktiveExt.kt → examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/ReaktiveExt.kt

0
examples/todo/common/utils/src/commonMain/kotlin/example/todo/common/utils/StoreExt.kt → examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/StoreExt.kt

0
examples/todo/common/utils/src/commonMain/kotlin/example/todo/common/utils/ValueComposable.kt → examples/todoapp/common/utils/src/commonMain/kotlin/example/todo/common/utils/ValueComposable.kt

0
examples/todo/desktop/.gitignore → examples/todoapp/desktop/.gitignore vendored

0
examples/todo/desktop/build.gradle.kts → examples/todoapp/desktop/build.gradle.kts

0
examples/todo/desktop/src/main/kotlin/example/todo/desktop/Main.kt → examples/todoapp/desktop/src/main/kotlin/example/todo/desktop/Main.kt

0
examples/todo/gradle.properties → examples/todoapp/gradle.properties

0
examples/todo/gradle/wrapper/gradle-wrapper.jar → examples/todoapp/gradle/wrapper/gradle-wrapper.jar vendored

0
examples/todo/gradle/wrapper/gradle-wrapper.properties → examples/todoapp/gradle/wrapper/gradle-wrapper.properties vendored

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save