File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
app/src/main/java/me/ash/reader/ui/widget Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,6 @@ fun ArticleList(
227227 Header (title, theme)
228228
229229 LazyColumn () {
230- item { Spacer (modifier = GlanceModifier .height(4 .dp)) }
231230 items(items) {
232231 ArticleItem (
233232 article = it,
@@ -249,7 +248,10 @@ fun ArticleList(
249248@GlanceComposable
250249@Composable
251250fun ArticleItem (article : Article , theme : Theme , modifier : GlanceModifier = GlanceModifier ) {
252- Column (modifier = modifier.fillMaxWidth().padding(bottom = 8 .dp).padding(horizontal = 12 .dp)) {
251+ Column (
252+ modifier =
253+ modifier.fillMaxWidth().padding(top = 3 .dp, bottom = 6 .dp).padding(horizontal = 12 .dp)
254+ ) {
253255 Text (
254256 text = article.feedName,
255257 style =
You can’t perform that action at this time.
0 commit comments