Add some todos

This commit is contained in:
ganfra 2023-01-20 14:57:47 +01:00
parent 50cd1ff1d4
commit a2ddd03ada
4 changed files with 4 additions and 1 deletions

View file

@ -23,6 +23,7 @@ plugins {
}
android {
// TODO change the namespace (and your classes package)
namespace = "io.element.android.x.features.template"
}

View file

@ -16,6 +16,7 @@
package io.element.android.x.features.template
// TODO Add your events or remove the file completely if no events
sealed interface TemplateEvents {
object MyEvent: TemplateEvents
}

View file

@ -29,7 +29,7 @@ import io.element.android.x.anvilannotations.ContributesNode
import io.element.android.x.architecture.presenterConnector
import io.element.android.x.di.AppScope
// Change to use the right Scope for your feature.
// TODO Change to use the right Scope for your feature. For now it can be AppScope, SessionScope or RoomScope
@ContributesNode(AppScope::class)
class TemplateNode @AssistedInject constructor(
@Assisted buildContext: BuildContext,

View file

@ -16,6 +16,7 @@
package io.element.android.x.features.template
// TODO add your ui models. Remove the eventSink if you don't have events.
data class TemplateState(
val eventSink: (TemplateEvents) -> Unit = {}
)