@@ -5,6 +5,7 @@ import 'package:package_info_plus/package_info_plus.dart';
55import 'package:sizer/sizer.dart' ;
66import 'package:taskwarrior/config/app_settings.dart' ;
77import 'package:taskwarrior/config/taskwarriorcolors.dart' ;
8+ import 'package:taskwarrior/config/taskwarriorfonts.dart' ;
89import 'package:url_launcher/url_launcher.dart' ;
910
1011class AboutPage extends StatefulWidget {
@@ -59,7 +60,7 @@ class _AboutPageState extends State<AboutPage> {
5960 Text (
6061 "Taskwarrior" ,
6162 style: GoogleFonts .poppins (
62- fontWeight: FontWeight .bold,
63+ fontWeight: TaskWarriorFonts .bold,
6364 fontSize: 18 ,
6465 color: AppSettings .isDarkMode
6566 ? TaskWarriorColors .white
@@ -91,7 +92,7 @@ class _AboutPageState extends State<AboutPage> {
9192 TextSpan (
9293 text: 'Version: ' ,
9394 style: GoogleFonts .poppins (
94- fontWeight: FontWeight .bold,
95+ fontWeight: TaskWarriorFonts .bold,
9596 fontSize: 15 ,
9697 color: AppSettings .isDarkMode
9798 ? TaskWarriorColors .white
@@ -116,7 +117,7 @@ class _AboutPageState extends State<AboutPage> {
116117 TextSpan (
117118 text: 'Package: ' ,
118119 style: GoogleFonts .poppins (
119- fontWeight: FontWeight .bold,
120+ fontWeight: TaskWarriorFonts .bold,
120121 fontSize: 15 ,
121122 color: AppSettings .isDarkMode
122123 ? TaskWarriorColors .white
@@ -149,7 +150,7 @@ class _AboutPageState extends State<AboutPage> {
149150 introduction,
150151 textAlign: TextAlign .center,
151152 style: GoogleFonts .poppins (
152- fontWeight: FontWeight .w500 ,
153+ fontWeight: TaskWarriorFonts .medium ,
153154 fontSize: 12 ,
154155 color: AppSettings .isDarkMode
155156 ? TaskWarriorColors .white
@@ -194,7 +195,7 @@ class _AboutPageState extends State<AboutPage> {
194195 label: Text (
195196 "GitHub" ,
196197 style: GoogleFonts .poppins (
197- fontWeight: FontWeight .w500 ,
198+ fontWeight: TaskWarriorFonts .medium ,
198199 fontSize: 12 ,
199200 color: AppSettings .isDarkMode
200201 ? TaskWarriorColors .black
@@ -232,7 +233,7 @@ class _AboutPageState extends State<AboutPage> {
232233 label: Text (
233234 "CCExtractor" ,
234235 style: GoogleFonts .poppins (
235- fontWeight: FontWeight .w500 ,
236+ fontWeight: TaskWarriorFonts .medium ,
236237 fontSize: 12 ,
237238 color: AppSettings .isDarkMode
238239 ? TaskWarriorColors .black
@@ -250,7 +251,7 @@ class _AboutPageState extends State<AboutPage> {
250251 "Eager to enhance this project? Visit our GitHub repository." ,
251252 textAlign: TextAlign .center,
252253 style: GoogleFonts .poppins (
253- fontWeight: FontWeight .w600 ,
254+ fontWeight: TaskWarriorFonts .semiBold ,
254255 fontSize: 12 ,
255256 color: AppSettings .isDarkMode
256257 ? TaskWarriorColors .white
0 commit comments