fix: return divider to changelogs screen

Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
Infi 2024-01-21 19:01:44 +01:00
parent fc2c3f6f6f
commit 1f1aebbd63
1 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.safeDrawingPadding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.material3.Divider
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.ListItem
import androidx.compose.material3.MaterialTheme
@ -106,6 +107,7 @@ fun ChangelogsSettingsScreen(
)
}
)
Divider()
}
}
}