29 lines
757 B
Dart
29 lines
757 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:aitrainer_app/widgets/nav_drawer.dart';
|
|
|
|
class CustomerModifyPage extends StatefulWidget{
|
|
_CustomerModifyPageState createState() => _CustomerModifyPageState();
|
|
}
|
|
|
|
class _CustomerModifyPageState extends State {
|
|
//final _formKey = GlobalKey<FormState>();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
drawer: NavDrawer(),
|
|
appBar: AppBar(
|
|
title: Text('Modify customer'),
|
|
),
|
|
body: Center(
|
|
child: Text('Modify customer'),
|
|
),
|
|
floatingActionButton: FloatingActionButton(
|
|
onPressed: () => {},
|
|
child: Icon(Icons.save,),
|
|
mini: true,
|
|
)
|
|
);
|
|
}
|
|
} |