From bb7de640d283ab4b9c692cd3e7bd82ee8a383a74 Mon Sep 17 00:00:00 2001 From: Takahashi <hans.535200041@stu.untar.ac.id> Date: Wed, 25 May 2022 10:35:39 +0000 Subject: [PATCH] =?UTF-8?q?Added=20About=20Us=20=E8=B0=B7=E6=9D=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/components/about_us_body.dart | 103 ++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 lib/components/about_us_body.dart diff --git a/lib/components/about_us_body.dart b/lib/components/about_us_body.dart new file mode 100644 index 0000000..3d22770 --- /dev/null +++ b/lib/components/about_us_body.dart @@ -0,0 +1,103 @@ +import 'package:flutter/material.dart'; +import 'package:nekoya_flutter/components/menu.dart'; + +class AboutUsBody extends StatefulWidget { + const AboutUsBody({Key? key}) : super(key: key); + + @override + State<AboutUsBody> createState() => _AboutUsBodyState(); +} + +class _AboutUsBodyState extends State<AboutUsBody> { + @override + Widget build(BuildContext context) { + return Container( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: <Widget>[ + Stack( + children: [ + Center( + child: ClipRRect( + borderRadius: BorderRadius.circular(18), + child: Image.asset( + 'assets/images/AboutUs.gif', + height: 243, + width: 432, + alignment: Alignment.center, + ), + ), + ), + Center( + child: ClipRRect( + borderRadius: BorderRadius.circular(18), + child: Container( + decoration: BoxDecoration( + color: const Color.fromARGB(255, 18, 18, 19) + .withOpacity(0.4), + ), + height: 243, + width: 432, + alignment: Alignment.center, + ), + ), + ), + Center( + child: Container( + padding: const EdgeInsets.only(top: 25), + child: const Text( + 'About Us', + style: TextStyle( + color: Color.fromARGB(255, 252, 252, 252), + fontSize: 40, + ), + ), + ), + ), + Center( + child: Container( + padding: const EdgeInsets.only(top: 75), + child: const Text( + 'Nekoya is your place for getting shoes for the entire family \nfrom many name brands. You’ll discover styles for ladies, men and children\n from brands like Nike, Converse, Vans, Skechers, ASICS and many more!\n Nekoya is a goal for the popular footwear brands you know and love.', + textAlign: TextAlign.center, + style: TextStyle( + color: Color.fromARGB(255, 252, 252, 252), + fontSize: 12, + ), + ), + ), + ), + Center( + child: Container( + padding: const EdgeInsets.only(top: 135), + child: const Text( + 'Contact Us', + textAlign: TextAlign.center, + style: TextStyle( + color: Color.fromARGB(255, 252, 252, 252), + fontSize: 40, + ), + ), + ), + ), + Center( + child: Container( + padding: const EdgeInsets.only(top: 185), + child: const Text( + 'moe@chocola.dev', + textAlign: TextAlign.center, + style: TextStyle( + color: Color.fromARGB(255, 252, 252, 252), + fontSize: 20, + ), + ), + ), + ), + ], + ), + ], + ), + ); + } +}