Skip to content

Commit

Permalink
Complete safety page
Browse files Browse the repository at this point in the history
  • Loading branch information
Ritam Chakraborty committed Oct 10, 2020
1 parent fef992b commit 3d52128
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/widgets/prevention_card_1.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ class PreventionCard1 extends StatelessWidget {
fontWeight: FontWeight.bold,
),
),
SizedBox(height: 8.0),
Container(
child: Text(
"$_text",
Expand All @@ -60,7 +61,10 @@ class PreventionCard1 extends StatelessWidget {
),
Flexible(
flex: 1,
child: Image.asset(_imagePath),
child: Padding(
padding: const EdgeInsets.only(right: 8.0),
child: Image.asset(_imagePath),
),
),
],
),
Expand Down

0 comments on commit 3d52128

Please sign in to comment.