Files
check-flutter/src/tutFun.dart
Михаил Капелько 2bcea6ab15 display single tile
2026-06-01 19:37:13 +03:00

18 lines
324 B
Dart

library;
import 'package:flutter/material.dart';
import 'game.dart';
Color tutTileColor(HitType t) {
if (t == HitType.hit) {
return Colors.green;
}
if (t == HitType.partial) {
return Colors.yellow;
}
if (t == HitType.miss) {
return Colors.grey;
}
return Colors.white;
}