10 lines
284 B
Dart
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);
|