Commit ea6cfde3 authored by Fikri's avatar Fikri

content home Media used by MedApp di file home4.dart

parent 3dc17278
......@@ -9,7 +9,7 @@ class Home4 extends StatelessWidget {
var ScreenSize = MediaQuery.of(context).size;
return Container(
width: ScreenSize.width,
height: ScreenSize.height * 0.98,
height: ScreenSize.height * 0.99,
color: Colors.white,
child: Container(
padding: EdgeInsets.all(20),
......@@ -38,8 +38,8 @@ class Home4 extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Container(
width: ScreenSize.width * 0.36,
height: ScreenSize.height * 0.69,
width: ScreenSize.width * 0.45,
height: ScreenSize.height * 0.85,
color: Colors.blue[900],
child: Container(
alignment: Alignment.topLeft,
......@@ -50,10 +50,23 @@ class Home4 extends StatelessWidget {
SizedBox(height: 40,),
Row(
children: [
Text("Mobile & Web Apps",
Text("Media used by MedApp",
style: TextStyle(
color: Colors.white,
fontSize: 34
fontSize: 36,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.left,
),
],
),
SizedBox(height: 10,),
Row(
children: [
Text("Mobile Devices, TV Display, Kiosk, & Web Admin System",
style: TextStyle(
color: Colors.white,
fontSize: 24,
),
textAlign: TextAlign.left,
),
......@@ -63,12 +76,62 @@ class Home4 extends StatelessWidget {
Row(
children: [
Container(
height: 100,
height: 80,
width: ScreenSize.width *0.30,
child: Text(
"Mobile Function: Application for patients (online appointment, queuing information, online payment)",
style: TextStyle(
fontSize: 16,
height: 1.3,
letterSpacing: 1.3,
color: Colors.white
),
)
),
],
),
Row(
children: [
Container(
height: 80,
width: ScreenSize.width *0.30,
child: Text(
"TV Display Function: Display queue calls at every counter or doctor queue at the hospital",
style: TextStyle(
fontSize: 16,
height: 1.3,
letterSpacing: 1.3,
color: Colors.white
),
)
),
],
),
Row(
children: [
Container(
height: 80,
width: ScreenSize.width *0.30,
child: Text(
"Now this application is available on your smartphone, Download now !",
"Kiosk Function: Queue pick-up, self-reservation on site, check-in",
style: TextStyle(
fontSize: 16,
height: 1.3,
letterSpacing: 1.3,
color: Colors.white,
),
)
),
],
),
Row(
children: [
Container(
height: 80,
width: ScreenSize.width *0.30,
child: Text("Web Admin Function: Queue management in hospital, reservation by admin or hospital officer, queue call ",
style: TextStyle(
fontSize: 21,
fontSize: 16,
height: 1.3,
letterSpacing: 1.3,
color: Colors.white
......@@ -81,10 +144,12 @@ class Home4 extends StatelessWidget {
Row(
children: [
Container(
height : 50,
width : 200,
height : 35,
width : 180,
child: ElevatedButton(
onPressed: (){},
onPressed: (){
Navigator.pushNamed(context, '/register');
},
style: ElevatedButton.styleFrom(
primary: Colors.blue[900],
onSurface: Colors.white,
......@@ -130,7 +195,7 @@ class Home4 extends StatelessWidget {
),
),
),
SizedBox(width: 40,),
SizedBox(width: 10,),
Container(
width: ScreenSize.width * 0.3,
height: ScreenSize.height * 0.69,
......@@ -140,7 +205,7 @@ class Home4 extends StatelessWidget {
image: DecorationImage(
image: AssetImage('assets/images/medaps3.png')
),
borderRadius: BorderRadius.circular(20)
borderRadius: BorderRadius.circular(20),
),
)
],
......
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