diff --git a/lib/widgets/map_widget.dart b/lib/widgets/map_widget.dart index ec5f6f7..19acc90 100644 --- a/lib/widgets/map_widget.dart +++ b/lib/widgets/map_widget.dart @@ -93,14 +93,17 @@ class MapWidget extends StatelessWidget { ], )), ), - Container( - color: Colors.white, - child: Text(TextUtils.getDisplayTextFeture(i), - style: const TextStyle( - fontSize: 16, - fontWeight: FontWeight.bold, - color: Colors.red, - ))), + Opacity( + opacity: 0.6, + child: Container( + color: Colors.white.withOpacity(0.6), + child: Text(TextUtils.getDisplayTextFeture(i), + style: const TextStyle( + fontSize: 16, + fontWeight: FontWeight.bold, + color: Colors.red, + ))), + ), ], ); }