event_state.dart 445 B

1234567891011121314151617181920212223
  1. import 'package:flutter/material.dart';
  2. enum EventState {
  3. idle,
  4. start,
  5. finish;
  6. String toString() {
  7. return switch (this) {
  8. EventState.idle => '未开始',
  9. EventState.start => '进行中',
  10. EventState.finish => '已结束',
  11. };
  12. }
  13. Color toColor() {
  14. return switch (this) {
  15. EventState.idle => Colors.blue,
  16. EventState.start => Colors.green,
  17. EventState.finish => Colors.orange,
  18. };
  19. }
  20. }