This commit is contained in:
2021-01-11 11:20:14 +01:00
parent c24f10046c
commit 6bee5378e7
2 changed files with 79 additions and 2 deletions

View File

@@ -77,6 +77,30 @@ class MapViewState extends State<MapView> {
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expanded(
child: Row(
children: [
RaisedButton(
color: Colors.grey[900],
elevation: 0,
padding: EdgeInsets.symmetric(
vertical: 12, horizontal: 4),
onPressed: () {
Navigator.pop(context);
},
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Icon(
Icons.arrow_back_ios_rounded,
color: Colors.orange,
),
],
),
),
],
),
),
RaisedButton(
color: Colors.grey[900],
elevation: 0,