You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/app/src/main/java/org/tasks/widget/TileService.kt

12 lines
347 B
Kotlin

package org.tasks.widget
import android.service.quicksettings.TileService
import org.tasks.intents.TaskIntents
class TileService : TileService() {
override fun onClick() {
val newTaskIntent = TaskIntents.getNewTaskIntent(this, null)
.addFlags(TaskIntents.FLAGS)
startActivityAndCollapse(newTaskIntent)
}
}