This commit is contained in:
Patrick Alvin Alcala 2025-02-28 14:08:05 +08:00
parent 27f00e43a7
commit 3572f90b24
24 changed files with 290 additions and 257 deletions

View file

@ -53,7 +53,7 @@ class _MainPageState extends State<MainPage> {
MenuWidget(
icon: FontAwesomeIcons.circlePlus,
text: 'Add Manufactorer',
description: 'Add Manufactorer to the record',
description: 'Register manufactorer to the list',
onPressed: () => {context.push('/addmanufactorer')},
color: 'blue',
),
@ -61,7 +61,7 @@ class _MainPageState extends State<MainPage> {
MenuWidget(
icon: FontAwesomeIcons.circlePlus,
text: 'Add Type',
description: 'Create a new medical type',
description: 'Register new medical type',
onPressed: () => {context.push('/addtype')},
color: 'blue',
),
@ -69,7 +69,7 @@ class _MainPageState extends State<MainPage> {
MenuWidget(
icon: FontAwesomeIcons.circlePlus,
text: 'Add Category',
description: 'Create a new medicine category',
description: 'Register new medicine category',
onPressed: () => {context.push('/addcategory')},
color: 'blue',
),
@ -77,35 +77,35 @@ class _MainPageState extends State<MainPage> {
MenuWidget(
icon: FontAwesomeIcons.circlePlus,
text: 'Add Generics',
description: 'Add generic name on the list',
description: 'Register generic name',
onPressed: () => {context.push('/addgenerics')},
color: 'blue'),
const Gap(32),
MenuWidget(
icon: FontAwesomeIcons.circlePlus,
text: 'Add Medicine',
description: 'Add generic name on the list',
description: 'Register medicine to the global list',
onPressed: () => {context.push('/addmedicines')},
color: 'green'),
const Gap(16),
MenuWidget(
icon: FontAwesomeIcons.circlePlus,
text: 'Add Stock',
description: 'Add generic name on the list',
description: 'Add a new stock',
onPressed: () => {context.push('/addstock')},
color: 'green'),
const Gap(32),
MenuWidget(
icon: Icons.delete,
text: 'Remove Stock',
description: 'Add generic name on the list',
description: 'Reduce stock based on purchase',
onPressed: () => {context.push('/deletestock')},
color: 'red'),
const Gap(32),
MenuWidget(
icon: FontAwesomeIcons.listCheck,
text: 'List of Stocks',
description: 'Add generic name on the list',
description: 'View the list of available stocks',
onPressed: () => {context.push('/liststocks')},
color: 'yellow'),
const Gap(40),