Files
2019-05-26 00:52:01 -07:00

23 lines
426 B
Dart

import 'package:flutter/material.dart';
import './product_manager.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Do Everything Bar'),
),
body: Column(
children: [
ProductManager('Test'),
],
),
));
}
}