From 5068cbbcf4e71a482f07f4ccf4ca81e2dc237d06 Mon Sep 17 00:00:00 2001 From: estevez Date: Wed, 3 Oct 2018 15:55:11 +0300 Subject: [PATCH] Menu quick fix --- lib/main.dart | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index d6fa46d..2c90269 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -495,6 +495,17 @@ class _MainPageState extends State with WidgetsBindingObserver { Navigator.of(context).pushNamed('/connection-settings'); }, ), + Container( + height: 16.0, + decoration: new BoxDecoration( + border: new Border( + bottom: BorderSide( + width: 1.0, + color: Colors.black26, + ) + ), + ) + ), new ListTile( leading: Icon(Icons.insert_drive_file), title: Text("Log"), @@ -512,28 +523,28 @@ class _MainPageState extends State with WidgetsBindingObserver { }, ), Container( - height: 30.0, + height: 16.0, decoration: new BoxDecoration( border: new Border( - top: BorderSide( - width: 2.0, + bottom: BorderSide( + width: 1.0, color: Colors.black26, ) ), ) ), - new ListTile( - leading: Icon(MaterialDesignIcons.createIconDataFromIconName("mdi:coffee")), - title: Text("By me a coffee"), - onTap: () { - Navigator.of(context).pop(); - HAUtils.launchURL("https://www.buymeacoffee.com/estevez"); - }, - ), new AboutListTile( applicationName: appName, applicationVersion: appVersion, applicationLegalese: "Keyboard Crumbs | www.keyboardcrumbs.io", + ), + new ListTile( + leading: Icon(MaterialDesignIcons.createIconDataFromIconName("mdi:coffee")), + title: Text("Buy me a coffee"), + onTap: () { + Navigator.of(context).pop(); + HAUtils.launchURL("https://www.buymeacoffee.com/estevez"); + }, ) ], ),