Commit 8b8f452c authored by Budi Prasetyo's avatar Budi Prasetyo

home 4 resize v3

parent 4dcb6e79
import 'package:flutter/material.dart';
import 'package:medapp_eksad/widget/button_color.dart';
class Home4 extends StatelessWidget {
const Home4({Key? key}) : super(key: key);
......@@ -12,8 +11,8 @@ class Home4 extends StatelessWidget {
height: ScreenSize.height * 0.99,
color: Colors.white,
child: Container(
padding: EdgeInsets.all(20),
margin: EdgeInsets.fromLTRB(160, 90, 160, 90),
padding: const EdgeInsets.all(20),
margin: const EdgeInsets.fromLTRB(160, 90, 160, 90),
width: ScreenSize.width * 0.20,
height: ScreenSize.height * 0.90,
decoration: BoxDecoration(
......@@ -33,12 +32,11 @@ class Home4 extends StatelessWidget {
),
],
),
child: Container(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Container(
padding: EdgeInsets.all(9),
padding: const EdgeInsets.all(9),
width: ScreenSize.width * 0.4,
height: ScreenSize.height * 0.85,
//color: Colors.blue[900],
......@@ -46,7 +44,7 @@ class Home4 extends StatelessWidget {
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Container(
SizedBox(
height: ScreenSize.height*0.08,
width: ScreenSize.width,
child: Text("Media used by MedApp",
......@@ -167,7 +165,6 @@ class Home4 extends StatelessWidget {
],
),
),
),
);
}
......
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