Make sync account fill max width

pull/1975/head
Alex Baker 2 years ago
parent 837e4e5406
commit a51593170f

@ -3,10 +3,7 @@ package org.tasks.compose
import androidx.annotation.DrawableRes
import androidx.annotation.StringRes
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.*
import androidx.compose.material.Icon
import androidx.compose.material.MaterialTheme
import androidx.compose.material.Text
@ -29,7 +26,8 @@ fun SyncAccount(
Row(
modifier = Modifier
.clickable { onClick() }
.padding(vertical = 8.dp, horizontal = 16.dp),
.padding(vertical = 8.dp, horizontal = 16.dp)
.fillMaxWidth(),
verticalAlignment = Alignment.CenterVertically,
) {
Icon(

Loading…
Cancel
Save