remove padding
This commit is contained in:
parent
bfb175aa60
commit
c582ead2f5
1 changed files with 7 additions and 15 deletions
|
|
@ -264,6 +264,7 @@ class _MihBusinessCardState extends State<MihBusinessCard> {
|
||||||
borderRadius: BorderRadius.circular(15),
|
borderRadius: BorderRadius.circular(15),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsetsGeometry.symmetric(
|
padding: EdgeInsetsGeometry.symmetric(
|
||||||
|
// vertical: 5,
|
||||||
horizontal: 25,
|
horizontal: 25,
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
|
|
@ -338,12 +339,9 @@ class _MihBusinessCardState extends State<MihBusinessCard> {
|
||||||
_makePhoneCall(widget.cellNumber);
|
_makePhoneCall(widget.cellNumber);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
Padding(
|
Divider(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
||||||
child: Divider(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
_buildContactInfo(
|
_buildContactInfo(
|
||||||
"Email",
|
"Email",
|
||||||
"Send us an email.",
|
"Send us an email.",
|
||||||
|
|
@ -358,12 +356,9 @@ class _MihBusinessCardState extends State<MihBusinessCard> {
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
Padding(
|
Divider(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
||||||
child: Divider(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
_buildContactInfo(
|
_buildContactInfo(
|
||||||
"Location",
|
"Location",
|
||||||
"Come visit us.",
|
"Come visit us.",
|
||||||
|
|
@ -380,13 +375,10 @@ class _MihBusinessCardState extends State<MihBusinessCard> {
|
||||||
),
|
),
|
||||||
Visibility(
|
Visibility(
|
||||||
visible: widget.website != null && widget.website! != "",
|
visible: widget.website != null && widget.website! != "",
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
||||||
child: Divider(
|
child: Divider(
|
||||||
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
Visibility(
|
Visibility(
|
||||||
visible: widget.website != null && widget.website! != "",
|
visible: widget.website != null && widget.website! != "",
|
||||||
child: _buildContactInfo(
|
child: _buildContactInfo(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue