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.
Other
80 stars 32 forks source link

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

Closed nastyaK closed 3 years ago

nastyaK commented 3 years ago

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:

myroot commented 3 years ago

It's updated OneUI looks https://github.com/Samsung/Tizen.CircularUI/issues/194

nastyaK commented 3 years ago

@myroot got it, thank you. Closing then