Commit 0d9fea88 authored by Dasun Madushanka's avatar Dasun Madushanka

product screen

parent d4efe266
import 'package:DMTI_app/constants.dart';
import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';
import 'components/body.dart';
class ProductsScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: buildAppBar(),
backgroundColor: kPrimaryColor,
body: Body(),
);
}
AppBar buildAppBar() {
return AppBar(
elevation: 0,
centerTitle: false,
title: Text('CIAT ANDROID'),
actions: <Widget>[
IconButton(
icon: SvgPicture.asset("assets/icons/notification.svg"),
onPressed: () {},
),
],
);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment