Skip to content

Commit 3561ed3

Browse files
committed
QUICKFIX List Navigation Overflow
1 parent f4debc9 commit 3561ed3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/components/blog.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,15 @@ class ListNavigation extends StatelessWidget {
235235
size: 25,
236236
color: textSecondary,
237237
),
238-
Text("NEWER POSTS", style: buttonTextStyle),
238+
if (ResponsiveBreakpoints.of(context).largerThan(MOBILE))
239+
Text("NEWER POSTS", style: buttonTextStyle),
239240
],
240241
),
241242
const Spacer(),
242243
Row(
243244
children: <Widget>[
244-
Text("OLDER POSTS", style: buttonTextStyle),
245+
if (ResponsiveBreakpoints.of(context).largerThan(MOBILE))
246+
Text("OLDER POSTS", style: buttonTextStyle),
245247
const Icon(
246248
Icons.keyboard_arrow_right,
247249
size: 25,

0 commit comments

Comments
 (0)