Menu quick fix

This commit is contained in:
estevez 2018-10-03 15:55:11 +03:00
parent 043d3a9905
commit 5068cbbcf4

View File

@ -495,6 +495,17 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver {
Navigator.of(context).pushNamed('/connection-settings'); 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( new ListTile(
leading: Icon(Icons.insert_drive_file), leading: Icon(Icons.insert_drive_file),
title: Text("Log"), title: Text("Log"),
@ -512,28 +523,28 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver {
}, },
), ),
Container( Container(
height: 30.0, height: 16.0,
decoration: new BoxDecoration( decoration: new BoxDecoration(
border: new Border( border: new Border(
top: BorderSide( bottom: BorderSide(
width: 2.0, width: 1.0,
color: Colors.black26, 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( new AboutListTile(
applicationName: appName, applicationName: appName,
applicationVersion: appVersion, applicationVersion: appVersion,
applicationLegalese: "Keyboard Crumbs | www.keyboardcrumbs.io", 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");
},
) )
], ],
), ),