Commit 29576932 authored by r.manan@eksad.com's avatar r.manan@eksad.com

Solution: our_solution2

parent 034f39e9
......@@ -21,7 +21,7 @@ class Solutions extends StatefulWidget {
}
class _SolutionsState extends State<Solutions> {
final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
@override
Widget build(BuildContext context) {
setPageTitle('MeddApp Solutions', context);
......@@ -33,7 +33,7 @@ class _SolutionsState extends State<Solutions> {
: AppbarHomeLarge(screenSize, context, Colors.black, Colors.black,
Colors.blue, Colors.black, Colors.black),
body: ListView(
children: [
children: const [
OurSolution(),
OurSolution2(),
Footer(),
......@@ -46,7 +46,7 @@ class _SolutionsState extends State<Solutions> {
return AppBar(
leading: IconButton(
onPressed: () => _scaffoldKey.currentState!.openDrawer(),
icon: Icon(
icon: const Icon(
Icons.list_outlined,
size: 30,
color: Colors.black,
......@@ -54,12 +54,10 @@ class _SolutionsState extends State<Solutions> {
),
backgroundColor: Colors.white,
centerTitle: true,
title: Container(
child: SizedBox(
height: 50,
width: 150,
child: Image.asset("assets/logo/medapp-logo.png"),
),
title: SizedBox(
height: 50,
width: 150,
child: Image.asset("assets/logo/medapp-logo.png"),
),
// ),
......
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