Added bottom padding to error message

This commit is contained in:
Abdelilah El Aissaoui 2021-10-28 04:04:32 +02:00
parent 61f0c00290
commit cc1f6b3cd5

View File

@ -142,7 +142,7 @@ fun AppTab(
Text( Text(
text = safeLastError.message, text = safeLastError.message,
modifier = Modifier modifier = Modifier
.padding(top = 8.dp) .padding(top = 8.dp, bottom = 16.dp)
) )
} }
} }