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