improvement.

merge-requests/390/head
Sikander Saleem 4 years ago
parent 3abd7227ec
commit f3d7686a10

@ -35,7 +35,7 @@ class _ContactUsPageState extends State<ContactUsPage> {
body: GridView(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2, crossAxisSpacing: 13, mainAxisSpacing: 9),
physics: NeverScrollableScrollPhysics(),
padding: EdgeInsets.only(top: 25),
padding: EdgeInsets.all(21),
shrinkWrap: true,
children: [
CardCommonContact(

@ -26,11 +26,80 @@ class CardCommonContact extends StatelessWidget {
},
child:
// MedicalProfileItem(
// imagePath: image,
// title: text,
// subTitle: subText,
// isPngImage: true,
// Container(
// // height: double.infinity,
// // width: double.infinity,
// // margin: EdgeInsets.all(0),
// decoration: BoxDecoration(
// borderRadius: BorderRadius.all(
// Radius.circular(10.0),
// ),
// boxShadow: [
// BoxShadow(
// color: Color(0xff000000).withOpacity(.05),
// //spreadRadius: 5,
// blurRadius: 27,
// offset: Offset(0, -3),
// ),
// ],
// color: Colors.white),
// clipBehavior: Clip.antiAlias,
// child: Stack(
// children: [
// Padding(
// padding: EdgeInsets.all(10),
// child: Column(
// crossAxisAlignment: CrossAxisAlignment.start,
// children: <Widget>[
// // Align(
// // alignment: projectViewModel.isArabic ? Alignment.bottomLeft : Alignment.bottomRight,
// // child: Image.asset(
// // "assets/images/medical/$imagePath",
// // height: SizeConfig.heightMultiplier * 5,
// // width: SizeConfig.heightMultiplier * 5,
// // ),
// // ),
// Image.asset(
// image,
// // height: SizeConfig.widthMultiplier * 7,
// // width: SizeConfig.widthMultiplier * 7,
// // color: imgColor,
// ),
//
// Text(
// text,
// maxLines: 1,
// style: TextStyle(
// // fontSize: SizeConfig.textMultiplier * 1.4,
// fontWeight: FontWeight.w600,
// letterSpacing: -0.3,
// height: 13 / 10,
// ),
// ),
// Container(
// width: double.infinity,
// child: Row(
// children: [
// Expanded(
// child: Text(
// subText,
// maxLines: 1,
// style: TextStyle(
// // fontSize: SizeConfig.textMultiplier * 1.4,
// fontWeight: FontWeight.w600,
// letterSpacing: -0.3,
// height: 1,
// ),
// ),
// ),
// ],
// ),
// ),
// ],
// ),
// ),
// ],
// ),
// )
Container(

Loading…
Cancel
Save