11package com.opentasker.ui.screens
22
33import androidx.compose.foundation.background
4- import androidx.compose.foundation.layout.Alignment
4+ import androidx.compose.foundation.lazy.LazyColumn
5+ import androidx.compose.foundation.lazy.items
6+ import androidx.compose.foundation.shape.RoundedCornerShape
7+ import androidx.compose.foundation.text.selection.TextOverflow
58import androidx.compose.foundation.layout.Arrangement
69import androidx.compose.foundation.layout.Column
710import androidx.compose.foundation.layout.Row
@@ -11,10 +14,6 @@ import androidx.compose.foundation.layout.fillMaxWidth
1114import androidx.compose.foundation.layout.height
1215import androidx.compose.foundation.layout.padding
1316import androidx.compose.foundation.layout.width
14- import androidx.compose.foundation.lazy.LazyColumn
15- import androidx.compose.foundation.lazy.items
16- import androidx.compose.foundation.shape.RoundedCornerShape
17- import androidx.compose.foundation.text.selection.TextOverflow
1817import androidx.compose.material.icons.Icons
1918import androidx.compose.material.icons.filled.Add
2019import androidx.compose.material.icons.filled.Delete
@@ -36,7 +35,9 @@ import androidx.compose.runtime.Composable
3635import androidx.compose.runtime.collectAsState
3736import androidx.compose.runtime.getValue
3837import androidx.compose.runtime.rememberCoroutineScope
38+ import androidx.compose.ui.Alignment
3939import androidx.compose.ui.Modifier
40+ import androidx.compose.ui.text.style.TextAlign
4041import androidx.compose.ui.unit.dp
4142import androidx.lifecycle.ViewModel
4243import androidx.lifecycle.ViewModelProvider
@@ -146,7 +147,7 @@ fun ProfileListScreen(
146147 " Create your first automation profile to get started" ,
147148 style = MaterialTheme .typography.bodyMedium,
148149 color = MaterialTheme .colorScheme.onSurfaceVariant,
149- textAlign = androidx.compose.ui.text.style. TextAlign .Center
150+ textAlign = TextAlign .Center
150151 )
151152 Spacer (modifier = Modifier .height(24 .dp))
152153 ElevatedButton (onClick = onCreateProfile) {
0 commit comments