Skip to content

Commit 441bf3e

Browse files
about page added
1 parent 63a07af commit 441bf3e

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

lib/Pages/about_page.dart

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
import 'package:flutter/material.dart';
2+
3+
class AboutPage extends StatefulWidget {
4+
const AboutPage({Key? key}) : super(key: key);
5+
6+
@override
7+
State<AboutPage> createState() => _AboutPageState();
8+
}
9+
10+
class _AboutPageState extends State<AboutPage> {
11+
@override
12+
Widget build(BuildContext context) {
13+
return Scaffold(
14+
backgroundColor: Colors.deepPurple.shade50,
15+
appBar: AppBar(
16+
iconTheme: IconThemeData(color: Colors.deepPurple.shade400),
17+
backgroundColor: Colors.transparent,
18+
title: RichText(
19+
text: TextSpan(
20+
text: 'About ',
21+
style: TextStyle(color: Colors.amber.shade900, fontWeight: FontWeight.w500, fontSize: 18),
22+
children: [
23+
TextSpan(
24+
text: 'TexFusion',
25+
style: TextStyle(color: Colors.deepPurple.shade500, fontWeight: FontWeight.w500, fontSize: 18),
26+
),
27+
]
28+
),
29+
),
30+
elevation: 0,
31+
centerTitle: true,
32+
leading: IconButton(
33+
icon: const Icon(Icons.arrow_back_ios_new_outlined),
34+
onPressed: () => Navigator.of(context).pop(),
35+
),
36+
),
37+
body: Column(
38+
mainAxisAlignment: MainAxisAlignment.center,
39+
children: const [
40+
Center(
41+
child: Text('Adding Soon..'),
42+
),
43+
],
44+
),
45+
);
46+
}
47+
}

0 commit comments

Comments
 (0)