Skip to content

Commit 19a14f4

Browse files
authored
feat: improve 'No more data' text style with lighter color and smaller font (#26)
1 parent c4c2f7b commit 19a14f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

V2er/View/Widget/Updatable/LoadmoreIndicatorView.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ struct LoadmoreIndicatorView: View {
2121
Group {
2222
if !hasMoreData {
2323
Text("No more data")
24-
.font(.callout)
24+
.font(.caption)
25+
.foregroundColor(.secondaryText)
2526
} else if isLoading {
2627
ActivityIndicator()
2728
} else {

0 commit comments

Comments
 (0)