0

我在 sencha touch 工作了将近一个月,但在 sencha 中找不到像下面这样设计 UI 的方法。

在此处输入图像描述

上面的面板是使用 Jquery mobile 创建的。

如何在 sencha 中创建这样的面板?

煎茶触控面板看起来不像上面那么漂亮

4

1 回答 1

1

是的,它只是面板中的一些按钮。他们大概会在下面。您必须编辑 CSS(边框半径、阴影等),但基本设置非常简单:

{
    xtype: 'panel',
    layout:{
        type:'hbox'
    },
    items:[
        {
            xtype:          "button",
            text:           'Register with X',
        },
        {
            xtype:          "button",
            text:           'Use Facebook Account',
        },
        {
            xtype:          "button",
            text:           'Use Twitter Account',
        }
    ]
};
于 2013-02-10T00:51:49.750 回答