summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/Window.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Window.cs b/Xamarin.Forms.Platform.Tizen/Native/Window.cs
index 7587e17c..2bc45c66 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/Window.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Window.cs
@@ -95,10 +95,6 @@ namespace Xamarin.Forms.Platform.Tizen.Native
void Initialize()
{
- // size
- var size = ScreenSize;
- Resize(size.Width, size.Height);
-
// events
Deleted += (sender, e) =>
{
@@ -123,14 +119,10 @@ namespace Xamarin.Forms.Platform.Tizen.Native
Show();
_conformant = new Conformant(this);
- _conformant.SetAlignment(-1.0, -1.0); // fill
- _conformant.SetWeight(1.0, 1.0); // expand
_conformant.Show();
// Create the base (default) layout for the application
_layout = new ELayout(_conformant);
- _layout.SetAlignment(-1.0, -1.0); // fill
- _layout.SetWeight(1.0, 1.0); // expand
_layout.SetTheme("layout", "application", "default");
_layout.Show();