diff --git a/lib/widgets/delivery/distance_in_kilometers.dart b/lib/widgets/delivery/distance_in_kilometers.dart index 70e0ecd..678a34d 100644 --- a/lib/widgets/delivery/distance_in_kilometers.dart +++ b/lib/widgets/delivery/distance_in_kilometers.dart @@ -12,32 +12,35 @@ class DistanceInKilometers extends StatelessWidget { @override Widget build(BuildContext context) { return CircleContainer( - child: Column( - crossAxisAlignment: CrossAxisAlignment.center, - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - distanceInKilometers.toString(), - style: TextStyle( - color: Color(0xff42B6AD), - fontWeight: FontWeight.w800, - fontStyle: FontStyle.normal), - ), - Text( - 'K.m', - style: TextStyle( - color: Color(0xff42B6AD), - fontWeight: FontWeight.w800, - fontStyle: FontStyle.normal), - ), - Text( - 'away', - style: TextStyle( - color: Color(0xff42B6AD), - fontWeight: FontWeight.w800, - fontStyle: FontStyle.normal), - ), - ], + child: Padding( + padding: const EdgeInsets.all(8.0), + child: Column( + crossAxisAlignment: CrossAxisAlignment.center, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + distanceInKilometers.toString(), + style: TextStyle( + color: Color(0xff42B6AD), + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal), + ), + Text( + 'K.m', + style: TextStyle( + color: Color(0xff42B6AD), + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal), + ), + Text( + 'away', + style: TextStyle( + color: Color(0xff42B6AD), + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal), + ), + ], + ), ), ); }