all: reformat

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-09-06 22:49:05 +05:30
parent 153f94715d
commit 91fc3aa9fa
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
3 changed files with 2 additions and 3 deletions

View file

@ -15,7 +15,6 @@ import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp import androidx.compose.ui.unit.sp
import dev.msfjarvis.todo.data.model.TodoItem import dev.msfjarvis.todo.data.model.TodoItem
import kotlinx.coroutines.coroutineScope
@Composable @Composable
fun LazyItemScope.TodoRowItem(item: TodoItem, onLongClick: () -> Unit) { fun LazyItemScope.TodoRowItem(item: TodoItem, onLongClick: () -> Unit) {

View file

@ -14,7 +14,7 @@ import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.text.style.TextIndent import androidx.compose.ui.text.style.TextIndent
import androidx.compose.ui.unit.sp import androidx.compose.ui.unit.sp
val lightColors = lightColors( val lightColors = lightColors(
primary = Color.White, primary = Color.White,
secondary = Color(0xFF3700B3), secondary = Color(0xFF3700B3),
background = Color.White, background = Color.White,

View file

@ -13,9 +13,9 @@ import androidx.compose.material.Switch
import androidx.compose.material.ripple.RippleIndication import androidx.compose.material.ripple.RippleIndication
import androidx.compose.runtime.Composable import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue import androidx.compose.runtime.getValue
import androidx.compose.runtime.setValue
import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Modifier import androidx.compose.ui.Modifier
import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.text.style.TextAlign