Telerik blogs

Times (and tastes) change, which is why we felt a new contemporary flat theme was in order; hence, Nova was born!

We've all heard the phrase, "don't judge a book by its cover." Yet the reality is that mobile apps are universally judged by their appearance and first few seconds of user experience. Developers who use Kendo UI know that gorgeous themes and widgets are a key ingredient in making this framework so great. That's why today I'd like to introduce you to a new Kendo UI theme we affectionately call "Nova."

From Flat to Nova

Over two years ago, Kendo UI was among the first to introduce the concept of a universal flat theme for skinning your web and mobile apps. This theme was simply called "Flat" and is still widely used today. Upon its release, our internal tests showed up to a 30-percent increase in app performance over native styling. This made switching to a flat UI a no-brainer in many cases.

Times (and tastes) change, which is why we felt a new contemporary flat theme was in order; hence, Nova was born!

kendo ui nova theme

Interested in other (unofficial) flat Kendo UI themes? Take a look at kendoflatthemes.com

New Features in Nova

More than just a new color scheme, the Nova theme is no longer strictly bound to the native concepts of our previous themes. This means we can do some cool things such as adding a pager overlay on top of a series of images:

nova pager overlay

To use this feature, all you have to do is add the km-scrollview-overlay class to your ScrollView element, like so:

<div data-role="scrollView" class="km-scrollview-overlay">
    <div data-role="page">Foo</div>
    <div data-role="page">Bar</div>
</div>

There is also a nested vertical tab strip that is activated like a drawer:

nova nested vertical tab strip

To activate this, add the km-vertical-tabstrip class to the TabStrip placed in a Drawer:

<div data-role="drawer">
    <div data-role="tabstrip" class="km-vertical-tabstrip">
    </div>
</div>

Nova also has optional color schemes for your app navigation (light, accent, and dark):

nova color schemes

...which you use by adding the appropriate class (km-light, km-accent, or km-dark) to your navbar element:

<header data-role="header">
    <div data-role="navbar" class="km-light">
    </div>
</header>

There is much more as well, all documented in separate Nova sections of the Kendo UI docs:

Be sure to consult the full Kendo UI mobile demo site that is a "kitchen sink" of everything Nova!

Converting to Nova

It couldn't be much easier to migrate your existing Kendo UI SPA to Nova. Simply enter "nova" as the skin name when you initialize your Kendo UI app, like so:

var app = new kendo.mobile.Application(document.body, { skin: 'nova' });

If you are developing a hybrid mobile app using Kendo UI framework and Cordova, you should also take a good look at the Telerik Platform. The Telerik Platform provides an instantly productive environment for developing cross-platform mobile apps using Cordova/PhoneGap, along with a verified plugins marketplace, advanced on-device debugging, and the best device simulator on the market. You can get your free trial right here.

Interested in getting started developing with Kendo UI Mobile? Take a look at kendouimobileguide.com

Likewise if you are an Angular developer, you may be interested to know that the Telerik Platform and Kendo UI fully support Angular development! Take a look at this tutorial for developing mobile apps with Angular and Kendo UI.

More than Mobile

Nova is about more than hybrid mobile apps, too! With the latest release of Kendo UI , we introduced support for the Nova theme in our Kendo UI Web and DataViz offerings, as well. Now you can use the Nova theme with our responsive grid and scheduler widgets!

kendo ui grid with nova

Nova is also part of the Kendo UI theme builder, so you can customize the look and feel to your heart's content.

Now go out and create a great app leveraging the power of Kendo UI and the beauty of Nova!


Rob Lauer is a Product Manager for Telerik
About the Author

Rob Lauer

A maker at heart and a supporter of the open web, Rob is Developer Relations Lead at Blues Wireless. You can find Rob rambling incoherently on Twitter @RobLauer.

Comments

Comments are disabled in preview mode.