tbmihailov
tbmihailov

Reputation: 161

How to force kendoui mobile to use ios theme for Android

Is there a way to force kendoui mobile to use same ios theme of my application for both iOs and android.

Upvotes: 1

Views: 2694

Answers (2)

naturallyfoster
naturallyfoster

Reputation: 411

The theme can be set in the app initialization.

    var app = new kendo.mobile.Application(document.body, 
    {
        platform: "android"
    });

as per http://docs.telerik.com/kendo-ui/api/mobile/application#configuration-platform

Upvotes: 1

Bundyo
Bundyo

Reputation: 2193

Check the Kendo UI Mobile docs for how to force a platform style.

Upvotes: 3

Related Questions