Skip to content

Commit 812c4e8

Browse files
minor changes
1 parent d259292 commit 812c4e8

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

lib/Pages/about_page.dart

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,27 @@ class _AboutPageState extends State<AboutPage> {
1111
@override
1212
Widget build(BuildContext context) {
1313
return Scaffold(
14-
backgroundColor: Colors.deepPurple.shade50,
1514
appBar: AppBar(
16-
iconTheme: IconThemeData(color: Colors.deepPurple.shade400),
15+
iconTheme: IconThemeData(color: Theme.of(context).colorScheme.secondary,),
1716
backgroundColor: Colors.transparent,
1817
title: RichText(
1918
text: TextSpan(
2019
text: 'About ',
21-
style: TextStyle(color: Colors.amber.shade900, fontWeight: FontWeight.w500, fontSize: 18),
20+
style: TextStyle(
21+
color: Colors.amber.shade900,
22+
fontWeight: FontWeight.bold,
23+
fontSize: 18,
24+
fontFamily: 'Aesthetic',
25+
),
2226
children: [
2327
TextSpan(
2428
text: 'TexFusion',
25-
style: TextStyle(color: Colors.deepPurple.shade500, fontWeight: FontWeight.w500, fontSize: 18),
29+
style: TextStyle(
30+
color: Theme.of(context).colorScheme.secondary,
31+
fontWeight: FontWeight.bold,
32+
fontSize: 18,
33+
fontFamily: 'Aesthetic',
34+
),
2635
),
2736
]
2837
),

0 commit comments

Comments
 (0)