sense_the_rythm

rythm game for ESense Earable
git clone git://source.orangerot.dev:/university/sense_the_rythm.git
Log | Files | Refs | README | LICENSE

arrow_direction.dart (237B)


      1 import 'package:flutter/material.dart';
      2 
      3 enum ArrowDirection {
      4   left(Icons.arrow_back),
      5   down(Icons.arrow_downward),
      6   up(Icons.arrow_upward),
      7   right(Icons.arrow_forward);
      8 
      9   const ArrowDirection(this.icon);
     10 
     11   final IconData icon;
     12 }