File tree Expand file tree Collapse file tree
app/src/main/java/in/hridayan/ashell
crashreporter/presentation/screens
settings/presentation/page/crashhistory/screens Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import androidx.compose.foundation.layout.fillMaxWidth
1313import androidx.compose.foundation.layout.height
1414import androidx.compose.foundation.layout.padding
1515import androidx.compose.foundation.lazy.LazyColumn
16- import androidx.compose.foundation.lazy.items
1716import androidx.compose.material3.CardDefaults
1817import androidx.compose.material3.ExperimentalMaterial3Api
1918import androidx.compose.material3.ExperimentalMaterial3ExpressiveApi
@@ -219,12 +218,15 @@ fun CrashReportScreen(
219218 }
220219
221220 CustomCard (
222- modifier = Modifier .fillMaxWidth().padding(horizontal = 15 .dp),
221+ modifier = Modifier
222+ .fillMaxWidth()
223+ .padding(horizontal = 15 .dp),
223224 shape = cardShape,
224225 colors = CardDefaults .cardColors(
225226 containerColor = MaterialTheme .colorScheme.surfaceContainer,
226227 contentColor = MaterialTheme .colorScheme.onSurface
227- )
228+ ),
229+ clickable = false
228230 ) {
229231 Text (
230232 text = line,
Original file line number Diff line number Diff line change @@ -218,7 +218,9 @@ fun CrashDetailsScreen(
218218 }
219219
220220 CustomCard (
221- modifier = Modifier .fillMaxWidth(),
221+ modifier = Modifier
222+ .fillMaxWidth()
223+ .padding(horizontal = 15 .dp),
222224 shape = cardShape,
223225 colors = CardDefaults .cardColors(
224226 containerColor = MaterialTheme .colorScheme.surfaceContainer,
You can’t perform that action at this time.
0 commit comments