Samsung / Tizen.CircularUI

Tizen Wearable CircularUI project is to develop an open source software motivate software developer to creating Tizen Wearable Xamarin Forms app more easily and efficiently.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Button's attribute tizen:VisualElement.Style="bottom" is ignored in Tizen 6 werable

nastyaK opened this issue · comments

Describe the bug
Button's attribute tizen:VisualElement.Style="bottom" is ignored for Tizen 6 werable.
For Tizen 4 the button is displayed correctly

To Reproduce

  1. Layout
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:d="http://xamarin.com/schemas/2014/forms/design"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:cu="clr-namespace:Tizen.Wearable.CircularUI.Forms;assembly=Tizen.Wearable.CircularUI.Forms"             
             xmlns:tizen="clr-namespace:Xamarin.Forms.PlatformConfiguration.TizenSpecific;assembly=Xamarin.Forms.Core"
             mc:Ignorable="d"
             xmlns:helpers="clr-namespace:WodInsight.Converters"
             x:Class="WodInsight.Pages.SignInPage">
    <ContentPage.Content>

        <StackLayout  VerticalOptions="FillAndExpand">
                <cu:PopupEntry Margin="30, 20"
                    IsVisible="{Binding IsRefreshing, Converter={helpers:InverseBoolConverter}}"
                    HorizontalOptions="FillAndExpand"
                    Text="{Binding Email}"
                    Keyboard="Email"
                    Placeholder="Email" 
                    VerticalOptions="CenterAndExpand" />
                <Button Text="Verify"
                        tizen:VisualElement.Style="bottom"
                        HorizontalOptions="Center"
                        VerticalOptions="End"
                        Command="{Binding VerifyCommand}" 
                        IsVisible="{Binding IsRefreshing, Converter={helpers:InverseBoolConverter}}"/>
        </StackLayout>
    </ContentPage.Content>
</ContentPage>

Expected behavior
The button looks like this. The screenshot is from Tizen 4 where the button behaving as expected

tizen4

Actual Behavior (Tizen 6)

Tizen6

Environment:

  • Target Product: Galaxy Watch Emulator and Galaxy Watch Active
  • Tizen Platform Version: Tizen 6
  • Tizen.CircularUI Version 1.5.2

It's updated OneUI looks
#194

@myroot got it, thank you. Closing then