diff --git a/lib/screens/about_us.dart b/lib/screens/about_us.dart new file mode 100644 index 0000000..d3ecc55 --- /dev/null +++ b/lib/screens/about_us.dart @@ -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 createState() => _AboutUsState(); +} + +class _AboutUsState extends State { + @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()); + } +}