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