55 lines
1.7 KiB
Dart
55 lines
1.7 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter/services.dart';
|
||
|
import 'package:local_spend/common/apifunctions/request_logout_api.dart';
|
||
|
|
||
|
class BasicDrawer extends StatefulWidget {
|
||
|
@override
|
||
|
_BasicDrawerState createState() => _BasicDrawerState();
|
||
|
}
|
||
|
|
||
|
class _BasicDrawerState extends State<BasicDrawer> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Drawer(
|
||
|
child: Container(
|
||
|
padding: new EdgeInsets.all(32.0),
|
||
|
child: ListView(
|
||
|
children: <Widget>[
|
||
|
ListTile(
|
||
|
title: Text(
|
||
|
"Submit Receipt",
|
||
|
style: TextStyle(color: Colors.black, fontSize: 20.0),
|
||
|
),
|
||
|
onTap: () {
|
||
|
requestLogoutAPI(context);
|
||
|
Navigator.of(context).pushNamed('/ReceiptPage');
|
||
|
},
|
||
|
),
|
||
|
ListTile(
|
||
|
title: Text(
|
||
|
"About",
|
||
|
style: TextStyle(color: Colors.black, fontSize: 20.0),
|
||
|
),
|
||
|
onTap: () {
|
||
|
SystemChannels.textInput.invokeMethod('TextInput.hide');
|
||
|
// Here I have not implemented an actual about screen, but if you did you would navigate to it's route
|
||
|
// Navigator.of(context).pushReplacementNamed('/AboutScreen');
|
||
|
},
|
||
|
),
|
||
|
ListTile(
|
||
|
title: Text(
|
||
|
"Logout",
|
||
|
style: TextStyle(color: Colors.black, fontSize: 20.0),
|
||
|
),
|
||
|
onTap: () {
|
||
|
requestLogoutAPI(context);
|
||
|
Navigator.of(context).pushReplacementNamed('/LoginPage');
|
||
|
},
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|