completed the mobile app for he boss to review the stock report
This commit is contained in:
23
boss_app2/lib/page/superadmin/index.dart
Normal file
23
boss_app2/lib/page/superadmin/index.dart
Normal file
@ -0,0 +1,23 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class SuperadminIndex extends StatefulWidget {
|
||||
const SuperadminIndex({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
_SuperadminIndexState createState() => _SuperadminIndexState();
|
||||
}
|
||||
|
||||
class _SuperadminIndexState extends State<SuperadminIndex> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// return Scaffold
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Superadmin'),
|
||||
),
|
||||
body: const Center(
|
||||
child: Text('Superadmin'),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user