update forced checkin for start point and nearbt start points

This commit is contained in:
2023-11-15 16:27:28 +05:30
parent e8d65ba725
commit 85b8c4705f
3 changed files with 45 additions and 8 deletions

View File

@ -94,13 +94,25 @@ class MapWidget extends StatelessWidget {
)),
),
Container(
color: Colors.white.withOpacity(0.4),
child: Text(TextUtils.getDisplayTextFeture(i),
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
color: Colors.red,
))),
color: Colors.purple.withOpacity(0.4),
// child: Text(TextUtils.getDisplayTextFeture(i),
// style: const TextStyle(
// fontSize: 16,
// fontWeight: FontWeight.bold,
// color: Colors.red,
// ))),
child: Text(
TextUtils.getDisplayTextFeture(i),
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w700,
// アウトラインの色と幅を設定
foreground: Paint()
..style = PaintingStyle.stroke
..strokeWidth = 1
..color = Colors.white,
),
))
],
);
}