Skip to content

Commit

Permalink
msglist: Adjust MarkAsReadWidget text to be bolder, use Source Sans 3
Browse files Browse the repository at this point in the history
  • Loading branch information
sirpengi committed Nov 11, 2023
1 parent e7fe06c commit 5a25b36
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/widgets/message_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import 'page.dart';
import 'profile.dart';
import 'sticky_header.dart';
import 'store.dart';
import 'text.dart';

class MessageListPage extends StatefulWidget {
const MessageListPage({super.key, required this.narrow});
Expand Down Expand Up @@ -396,7 +397,11 @@ class MarkAsReadWidget extends StatelessWidget {
child: FilledButton.icon(
style: FilledButton.styleFrom(
padding: const EdgeInsets.all(10),
textStyle: const TextStyle(fontSize: 18, fontWeight: FontWeight.w200),
textStyle: const TextStyle(
fontFamily: 'Source Sans 3',
fontSize: 18,
fontWeight: FontWeight.w400,
).merge(weightVariableTextStyle(context)),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5)),
),
onPressed: () => _handlePress(context),
Expand Down

0 comments on commit 5a25b36

Please sign in to comment.