About Us Page
This commit is contained in:
parent
28d737ae0c
commit
00d411f1af
1 changed files with 23 additions and 0 deletions
23
lib/screens/about_us.dart
Normal file
23
lib/screens/about_us.dart
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:nekoya_flutter/components/about_us_body.dart';
|
||||||
|
|
||||||
|
class AboutUs extends StatefulWidget {
|
||||||
|
const AboutUs({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<AboutUs> createState() => _AboutUsState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _AboutUsState extends State<AboutUs> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Scaffold(
|
||||||
|
backgroundColor: const Color(0xff1b1c1e),
|
||||||
|
appBar: AppBar(
|
||||||
|
title: const Text('About Us'),
|
||||||
|
centerTitle: true,
|
||||||
|
backgroundColor: const Color(0xff212226),
|
||||||
|
),
|
||||||
|
body: const AboutUsBody());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue