Skip to content

Commit

Permalink
feat(home_page): 💄 set font variation
Browse files Browse the repository at this point in the history
  • Loading branch information
albertms10 committed Oct 28, 2023
1 parent dc4b1c8 commit d96f113
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/src/pages/home_page.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:io';
import 'dart:ui';

import 'package:el_meu_diec/model.dart';
import 'package:el_meu_diec/src/widgets/autocomplete_entry_card.dart';
Expand All @@ -20,7 +21,14 @@ class HomePage extends StatelessWidget {
return Scaffold(
extendBodyBehindAppBar: true,
appBar: AppBar(
title: const Text('El meu DIEC'),
title: const Text(
'El meu DIEC',
style: TextStyle(
fontVariations: [
FontVariation('wght', 600),
],
),
),
backgroundColor: backgroundColor,
surfaceTintColor: backgroundColor,
shadowColor: backgroundColor,
Expand Down

0 comments on commit d96f113

Please sign in to comment.