app/lib/screens/home.dart

72 lines
2.2 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:nekoya_flutter/utils/utils.dart';
import 'package:nekoya_flutter/components/categories.dart';
import 'package:nekoya_flutter/components/new_arrival_products.dart';
import 'package:nekoya_flutter/components/popular_products.dart';
import 'package:nekoya_flutter/components/search_form.dart';
2022-05-14 18:52:16 +02:00
class Home extends StatelessWidget {
const Home({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
2022-05-13 07:58:11 +02:00
backgroundColor: const Color(0xff1b1c1e),
appBar: AppBar(
2022-05-13 07:58:11 +02:00
backgroundColor: const Color(0xff212226),
leading: IconButton(
onPressed: () {},
icon: SvgPicture.asset("assets/icons/menu.svg"),
),
title: Row(
mainAxisAlignment: MainAxisAlignment.center,
2022-05-14 18:44:03 +02:00
children: const [
SizedBox(width: defaultPadding / 2),
Text(
2022-05-13 07:58:11 +02:00
"Nekoya",
style: TextStyle(fontSize: 20.0, color: Colors.white),
),
],
),
actions: [
IconButton(
icon: SvgPicture.asset("assets/icons/Notification.svg"),
2022-05-13 07:58:11 +02:00
color: Colors.white,
onPressed: () {},
),
],
),
body: SingleChildScrollView(
physics: const BouncingScrollPhysics(
parent: AlwaysScrollableScrollPhysics()),
padding: const EdgeInsets.all(defaultPadding),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Explore",
style: Theme.of(context)
.textTheme
.headline4!
2022-05-13 07:58:11 +02:00
.copyWith(fontWeight: FontWeight.w500, color: Colors.white),
),
const Text(
"best Outfits for you",
2022-05-13 07:58:11 +02:00
style: TextStyle(fontSize: 18, color: Colors.white),
),
const Padding(
padding: EdgeInsets.symmetric(vertical: defaultPadding),
child: SearchForm(),
),
const Categories(),
const NewArrivalProducts(),
const PopularProducts(),
],
),
),
);
}
}