workouttest_app/lib/view/customer_modify_page.dart
2020-05-24 10:04:37 +02:00

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