We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4debc9 commit 3561ed3Copy full SHA for 3561ed3
lib/components/blog.dart
@@ -235,13 +235,15 @@ class ListNavigation extends StatelessWidget {
235
size: 25,
236
color: textSecondary,
237
),
238
- Text("NEWER POSTS", style: buttonTextStyle),
+ if (ResponsiveBreakpoints.of(context).largerThan(MOBILE))
239
+ Text("NEWER POSTS", style: buttonTextStyle),
240
],
241
242
const Spacer(),
243
Row(
244
children: <Widget>[
- Text("OLDER POSTS", style: buttonTextStyle),
245
246
+ Text("OLDER POSTS", style: buttonTextStyle),
247
const Icon(
248
Icons.keyboard_arrow_right,
249
0 commit comments