fix overflow issues
This commit is contained in:
parent
b54af2200a
commit
c1f2471e77
1 changed files with 10 additions and 6 deletions
|
|
@ -27,11 +27,14 @@ class _MihAttributesState extends State<MihAttributes> {
|
||||||
verticalAlignment: TableCellVerticalAlignment.middle,
|
verticalAlignment: TableCellVerticalAlignment.middle,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.only(bottom: 15.0),
|
padding: const EdgeInsets.only(bottom: 15.0),
|
||||||
child: Center(
|
child: FittedBox(
|
||||||
child: Icon(
|
child: Center(
|
||||||
icon,
|
child: Icon(
|
||||||
size: 125,
|
icon,
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
// size: 125,
|
||||||
|
color:
|
||||||
|
MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
@ -39,10 +42,11 @@ class _MihAttributesState extends State<MihAttributes> {
|
||||||
TableCell(
|
TableCell(
|
||||||
verticalAlignment: TableCellVerticalAlignment.middle,
|
verticalAlignment: TableCellVerticalAlignment.middle,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.only(bottom: 15.0),
|
padding: const EdgeInsets.all(15.0),
|
||||||
child: Center(
|
child: Center(
|
||||||
child: Text(
|
child: Text(
|
||||||
creator,
|
creator,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontSize: 20,
|
fontSize: 20,
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue