From d96f113bab5889eb7d0d316693659123e5112286 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albert=20Ma=C3=B1osa?= Date: Sat, 28 Oct 2023 10:22:28 +0200 Subject: [PATCH] feat(home_page): :lipstick: set font variation --- lib/src/pages/home_page.dart | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/src/pages/home_page.dart b/lib/src/pages/home_page.dart index a576650..05a0c9d 100644 --- a/lib/src/pages/home_page.dart +++ b/lib/src/pages/home_page.dart @@ -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'; @@ -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,