initial commit

This commit is contained in:
2023-08-31 18:07:19 +05:30
parent 18a5eca9ae
commit a70b6656a8
140 changed files with 5168 additions and 0 deletions

16
lib/constants.dart Normal file
View File

@@ -0,0 +1,16 @@
//ignore_for_file: constant_identifier_names
import 'package:flutter/material.dart';
const String breakfast = "Breakfast";
const String lunch = "Lunch";
const String snak = "Snacks";
const String dinner = "Dinner";
const String VEG = "VEG";
const String NONVEG = "NON";
const String EGG = "EGG";
const String EMPTY = "Mt";
const String storageKey = "FullMenu";
const Center noMenuWidget = Center(
child: Text("Menu not available for this session",
style: TextStyle(fontSize: 20, fontStyle: FontStyle.italic)));