Files
IIITB_Menu/lib/widgets/vegIcons.dart
2023-08-31 18:07:19 +05:30

10 lines
284 B
Dart

//ignore_for_file: file_names
import 'package:flutter/material.dart';
Icon vegIcon = const Icon(Icons.grass_rounded, color: Colors.green);
Icon nonVegIcon = const Icon(Icons.set_meal_rounded, color: Colors.red);
Icon eggIcon = const Icon(Icons.egg_rounded, color: Colors.orange);