From 3d52128a1167ee78acd457e3e22c8c2b5a84a36e Mon Sep 17 00:00:00 2001 From: Ritam Chakraborty Date: Sat, 10 Oct 2020 20:57:04 +0530 Subject: [PATCH] Complete safety page --- lib/widgets/prevention_card_1.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/widgets/prevention_card_1.dart b/lib/widgets/prevention_card_1.dart index b468da9..042e3f8 100644 --- a/lib/widgets/prevention_card_1.dart +++ b/lib/widgets/prevention_card_1.dart @@ -48,6 +48,7 @@ class PreventionCard1 extends StatelessWidget { fontWeight: FontWeight.bold, ), ), + SizedBox(height: 8.0), Container( child: Text( "$_text", @@ -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), + ), ), ], ),