Commit 175c1ec5 authored by Budi Prasetyo's avatar Budi Prasetyo

home 4 resize

parent ea6cfde3
...@@ -35,114 +35,91 @@ class Home4 extends StatelessWidget { ...@@ -35,114 +35,91 @@ class Home4 extends StatelessWidget {
), ),
child: Container( child: Container(
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[ children: <Widget>[
Container( Container(
width: ScreenSize.width * 0.45, width: ScreenSize.width * 0.4,
height: ScreenSize.height * 0.85, height: ScreenSize.height * 0.85,
color: Colors.blue[900], //color: Colors.blue[900],
child: Container( color: Colors.green,
alignment: Alignment.topLeft,
padding: EdgeInsets.all(30),
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[ children: <Widget>[
SizedBox(height: 40,), Container(
Row( height: ScreenSize.height*0.08,
children: [ width: ScreenSize.width,
Text("Media used by MedApp", child: Text("Media used by MedApp",
style: TextStyle( style: TextStyle(
color: Colors.white, color: Colors.white,
fontSize: 36, fontSize: 27,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
), ),
textAlign: TextAlign.left, textAlign: TextAlign.left,
), ),
],
), ),
SizedBox(height: 10,),
Row( Container(
children: [ width: ScreenSize.width,
Text("Mobile Devices, TV Display, Kiosk, & Web Admin System", child: Text("Mobile Devices, TV Display, Kiosk, & Web Admin System",
style: TextStyle( style: TextStyle(
color: Colors.white, color: Colors.white,
fontSize: 24, fontSize: 17,
), ),
textAlign: TextAlign.left, textAlign: TextAlign.left,
), ),
],
), ),
SizedBox(height: 30,),
Row(
children: [
Container( Container(
height: 80, height: ScreenSize.height*0.1,
width: ScreenSize.width *0.30, width: ScreenSize.width,
child: Text( child: Text(
"Mobile Function: Application for patients (online appointment, queuing information, online payment)", "Mobile Function: Application for patients (online appointment, queuing information, online payment)",
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 15,
height: 1.3, height: 1.3,
letterSpacing: 1.3, letterSpacing: 1.3,
color: Colors.white color: Colors.white
), ),
) )
), ),
],
),
Row(
children: [
Container( Container(
height: 80, height: ScreenSize.height*0.1,
width: ScreenSize.width *0.30, width: ScreenSize.width,
child: Text( child: Text(
"TV Display Function: Display queue calls at every counter or doctor queue at the hospital", "TV Display Function: Display queue calls at every counter or doctor queue at the hospital.",
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 15,
height: 1.3, height: 1.3,
letterSpacing: 1.3, letterSpacing: 1.3,
color: Colors.white color: Colors.white
), ),
) )
), ),
],
),
Row(
children: [
Container( Container(
height: 80, height: ScreenSize.height*0.05,
width: ScreenSize.width *0.30, width: ScreenSize.width,
child: Text( child: Text(
"Kiosk Function: Queue pick-up, self-reservation on site, check-in", "Kiosk Function: Queue pick-up, self-reservation on site, check-in.",
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 15,
height: 1.3, height: 1.3,
letterSpacing: 1.3, letterSpacing: 1.3,
color: Colors.white, color: Colors.white,
), ),
) )
), ),
],
),
Row(
children: [
Container( Container(
height: 80, height: ScreenSize.height*0.1,
width: ScreenSize.width *0.30, width: ScreenSize.width,
child: Text("Web Admin Function: Queue management in hospital, reservation by admin or hospital officer, queue call ", child: Text("Web Admin Function: Queue management in hospital, reservation by admin or hospital officer, queue call.",
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 15,
height: 1.3, height: 1.3,
letterSpacing: 1.3, letterSpacing: 1.3,
color: Colors.white color: Colors.white
), ),
) )
), ),
],
),
// SizedBox(height: 10,), // SizedBox(height: 10,),
Row(
children: [
Container( Container(
height : 35, height : 35,
width : 180, width : 180,
...@@ -169,31 +146,9 @@ class Home4 extends StatelessWidget { ...@@ -169,31 +146,9 @@ class Home4 extends StatelessWidget {
), ),
), ),
), ),
// child: ElevatedButton(
// onPressed: (){},
// style: DefaultColors(),
// // ElevatedButton.styleFrom(
// // primary: Colors.blue,
// // fixedSize: Size(170, 85),
// // onPrimary: Colors.white,
// // shape: RoundedRectangleBorder(
// // borderRadius: BorderRadius.all(Radius.circular(30),
// // )
// // )
// // ),
// child: Text("LEARN MORE",
// style: TextStyle(
// fontSize: 18,
// letterSpacing: 2
// ),
// ),
// ),
), ),
], ],
), ),
],
),
),
), ),
SizedBox(width: 10,), SizedBox(width: 10,),
Container( Container(
......
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