From 0c93fc26627a9a791c73ae2ec6dd6cde5d899896 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 19 Apr 2019 07:42:36 -0400 Subject: [PATCH] home page buttons --- src/App/App.xaml.cs | 2 +- src/App/Pages/HomePage.xaml | 31 +++++++++++++++---------------- src/App/Sass/styles.scss | 2 +- 3 files changed, 17 insertions(+), 18 deletions(-) diff --git a/src/App/App.xaml.cs b/src/App/App.xaml.cs index dbd13fa78..384c57bbe 100644 --- a/src/App/App.xaml.cs +++ b/src/App/App.xaml.cs @@ -28,7 +28,7 @@ namespace Bit.App InitializeComponent(); SetCulture(); ThemeManager.SetTheme("light"); - MainPage = new TabsPage(); + MainPage = new HomePage(); ServiceContainer.Resolve("platformUtilsService").Init(); _broadcasterService.Subscribe("showDialog", async (details) => diff --git a/src/App/Pages/HomePage.xaml b/src/App/Pages/HomePage.xaml index c05c30eaf..87f18f48e 100644 --- a/src/App/Pages/HomePage.xaml +++ b/src/App/Pages/HomePage.xaml @@ -4,6 +4,8 @@ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Bit.App.Pages.HomePage" xmlns:pages="clr-namespace:Bit.App.Pages" + xmlns:i18n="clr-namespace:Bit.App.Utilities" + xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core" x:DataType="pages:HomeViewModel" Title="{Binding PageTitle}"> @@ -11,22 +13,19 @@ - - diff --git a/src/App/Sass/styles.scss b/src/App/Sass/styles.scss index 676f3d1c0..6f56c5c8f 100644 --- a/src/App/Sass/styles.scss +++ b/src/App/Sass/styles.scss @@ -1,7 +1,7 @@ @import "variables.scss"; __ContentPage { - background-color: $white; + // background-color: $white; } StackLayout.list-cell {