Does anyone have a good source that has an example of using intents to start a new activity using Kotlin with Anko? It will be much appreciated!
Anko itself has a good example
But most of the time the only thing you need is
startActivity<ActivityClass>()
finish()