Added widgets

This commit is contained in:
Patrick Alvin Alcala 2025-12-03 17:20:12 +08:00
parent 8d382ad937
commit e38801dcf6
3 changed files with 56 additions and 10 deletions

View file

@ -25,6 +25,6 @@ class TextWidget extends StatelessWidget {
return title == true
? Text(text, style: GoogleFonts.outfit(textStyle: textStyle))
: Text(text, style: GoogleFonts.inter(textStyle: textStyle));
: Text(text, style: GoogleFonts.roboto(textStyle: textStyle));
}
}