Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Releases: Samsung/Tizen.CircularUI

1.5.0 Preview 2

31 Jan 05:58
dcdaf05
Compare
Choose a tag to compare
1.5.0 Preview 2 Pre-release
Pre-release

Nuget package here.

Enhancements

  • From this version, you can use StaticRegistrar for better startup performance. (#228)

1.5.0 Preview 1

30 Jan 23:55
Compare
Choose a tag to compare
1.5.0 Preview 1 Pre-release
Pre-release

Nuget package here.

Important Notice

  • Update the version of referenced Xamarin.Forms version to 4.4.0.991537 (#227 )
  • Shell support on Galaxy Watch. (#226)
    • As you know, Shell is primarily designed for mobile applications. In order to support the shell on small screen clocks, we reinterpreted the shell's behavior. It's still in beta and we'd love to hear your feedback.

New Controls

  • Adds CircularShell (#226)

Enhancements

  • Add IsWrapEnabled Property in CircleStepper (#224)
  • Change protection level for CircleScrollViewRenderer (#222)
  • Fix CirclePage.BackgroundImageSource (#214)

1.4.0

30 Oct 16:57
Compare
Choose a tag to compare

Nuget package here.

Enhancements

  • The widget application (or widget) is newly added (#209) (#191)

Bug fixes

  • Fix not setting ReturnType value in PopupEntry (#208)

Getting Started with Widget Application

In Tizen, widget application (or widget) is a specialized application that provides users with a quick view of specific information. In addition, the widget can allow the user to access certain features without launching the parent application. Please refer to here for more details.

ℹ️

Unfortunately, since the application template for the .NET widget is not yet available in Visual Studio, you have to create the widget application code yourself as shown below.

Step 1. Creating the Widget Base

WidgetBase is the abstract class for widget instance. You should define your widget base, which is inherited from the FormsWidgetBase class as below.

class MyWidgetBase : FormsWidgetBase
{
    public override void OnCreate(Bundle content, int w, int h)
    {
        base.OnCreate(content, w, h);
        // Create the Xamarin.Forms.Application to use your widget
        var app = new Application(); 
       // Load the application just like general Xamarin.Forms app.
        LoadApplication(app);
    }
}

Step 2. Creating the Widget Application

WidgetApplication represents a widget application. You should define your widget application, which is inherited from the FormsWidgetApplication class as below.

class MyWidgetApp: FormsWidgetApplication
{
    public MyWidgetApp(Type type) : base(type) {  }

    static void Main(string[] args)
    {
        //Creates the widget application with widget base
        var app = new MyWidgetApp(typeof(MyWidgetBase));
        Forms.Init(app);
        FormsCircularUI.Init();
        app.Run(args);
    }
}

1.3.2

02 Sep 06:13
71f9dbd
Compare
Choose a tag to compare

Nuget package here.

Important Notice

  • Update the version of referenced Xamarin.Forms version to 4.2.0.709249 (#205)

Enhancements

  • Fix an unifying image handle (#204). This change cause break.
    • CirclePage and TwoButtonPage
      • Use Page.BackgroundImageSource instead of Page.BackgroundImage
    • InformationPopup.BottomButton, TwoButtonPopup.FirstButton and TwoButtonPopup.SecondButton
      • Use MenuItem.IconImageSource instead of MenuItem.Icon

1.3.0

16 Aug 01:26
Compare
Choose a tag to compare

Nuget package here.

Important Notice

  • Update the version of referenced Xamarin.Forms version to 4.1.0.673156 (#202)

New Controls

  • Adds CircleImage (#197)

Bug Fixes

  • Fix InformationPopup and TwoButtonPopup button event handler bug (#200)

1.2.0

23 Apr 01:35
989853f
Compare
Choose a tag to compare

Nuget package here.

New Controls

  • Adds GoogleMapView (#183)

Enhancememts

  • Add the IsPopupOpened property of PopupEntry (#180)
  • Update UI Test (#172)
  • Apply Tizen.Appium.Forms 1.0.0-preview (#176)

Bug Fixes

  • Fix Actionbutton displaying issue on Multipage (#187)
  • Fix the wrong parameter about 3rd parameter of CreateAttached method (#179)
  • Fix MoreOption launching time issue (#178)

1.1.0

13 Mar 06:21
Compare
Choose a tag to compare

Nuget package here.

Enhancememts

  • Update the version of referenced Xamarin.Forms version to 3.5.0.129452 (#157)
  • MediaView has been newly added. (#170)
  • Add color property for bar and button and Popup (#132)

Bug Fixes

  • Fix PopupEntry updating issue (#133)
  • Fix ScollBarVisibility issue (#164)
  • Fix IndePage focus issue (#167)
  • Fix Header HeightRequest and RowHeight issue (#155)

1.0.0

19 Nov 08:22
Compare
Choose a tag to compare

Nuget package here.

This is the first stable version of the Tizen.Wearable.CicularUI pacakge.