Commit ea7b614f authored by Budi Prasetyo's avatar Budi Prasetyo

home 4 resize v4

parent 8b8f452c
...@@ -8,13 +8,13 @@ class Home4 extends StatelessWidget { ...@@ -8,13 +8,13 @@ class Home4 extends StatelessWidget {
var ScreenSize = MediaQuery.of(context).size; var ScreenSize = MediaQuery.of(context).size;
return Container( return Container(
width: ScreenSize.width, width: ScreenSize.width,
height: ScreenSize.height * 0.99, height: ScreenSize.height * 1,
color: Colors.white, color: Colors.white,
child: Container( child: Container(
padding: const EdgeInsets.all(20), padding: const EdgeInsets.all(20),
margin: const EdgeInsets.fromLTRB(160, 90, 160, 90), margin: const EdgeInsets.fromLTRB(160, 90, 160, 90),
width: ScreenSize.width * 0.20, width: ScreenSize.width * 0.20,
height: ScreenSize.height * 0.90, height: ScreenSize.height * 1,
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20), borderRadius: BorderRadius.circular(20),
//color: Color.fromARGB(200, 9, 47, 171), //color: Color.fromARGB(200, 9, 47, 171),
...@@ -36,9 +36,9 @@ class Home4 extends StatelessWidget { ...@@ -36,9 +36,9 @@ class Home4 extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[ children: <Widget>[
Container( Container(
padding: const EdgeInsets.all(9), padding: const EdgeInsets.all(2),
width: ScreenSize.width * 0.4, width: ScreenSize.width * 0.4,
height: ScreenSize.height * 0.85, height: ScreenSize.height * 0.95,
//color: Colors.blue[900], //color: Colors.blue[900],
child: Column( child: Column(
...@@ -59,6 +59,7 @@ class Home4 extends StatelessWidget { ...@@ -59,6 +59,7 @@ class Home4 extends StatelessWidget {
Container( Container(
width: ScreenSize.width, width: ScreenSize.width,
height: ScreenSize.height*0.07,
child: 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,
......
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