From dabb44635e817977e2e9674f01d156d9c5ab744e Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Wed, 27 Nov 2024 21:18:02 +0800 Subject: [PATCH] :bento: Use roboto as primary font --- lib/theme.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/theme.dart b/lib/theme.dart index 9575efd..e590f54 100644 --- a/lib/theme.dart +++ b/lib/theme.dart @@ -1,4 +1,5 @@ import 'package:flutter/material.dart'; +import 'package:google_fonts/google_fonts.dart'; import 'package:shared_preferences/shared_preferences.dart'; const kMaterialYouToggleStoreKey = 'app_theme_material_you'; @@ -42,6 +43,7 @@ Future createAppTheme( appBarTheme: AppBarTheme( centerTitle: true, ), + textTheme: GoogleFonts.robotoTextTheme(), scaffoldBackgroundColor: Colors.transparent, ); }