added Home and Produk Page

This commit is contained in:
kicap1992
2022-01-25 08:45:55 +08:00
parent 02f4acd38f
commit d791cf8aa3
137 changed files with 7129 additions and 0 deletions

View 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'),
),
);
}
}