NativeScript:Android上的选项卡视图图标太小

NativeScript:Android上的选项卡视图图标太小,nativescript,nativescript-vue,Nativescript,Nativescript Vue,在android系统中,我似乎无法将TabViewItem图标的大小变大。我尝试在XML中添加一个显式的高度和宽度,但这并没有改变任何事情。现在,它看起来像这样:对我来说太小了。我也试着给它一个类,并通过CSS改变,但仍然没有运气。我的代码如下: <TabViewItem :title='`FAVORITES ${this.favorites && this.favorites.length ? this.favorites.length : ""}`'

在android系统中,我似乎无法将TabViewItem图标的大小变大。我尝试在XML中添加一个显式的高度和宽度,但这并没有改变任何事情。现在,它看起来像这样:对我来说太小了。我也试着给它一个类,并通过CSS改变,但仍然没有运气。我的代码如下:

<TabViewItem :title='`FAVORITES ${this.favorites && this.favorites.length ? this.favorites.length : ""}`' width="60" height="60" iconSource="~/assets/images/heart-Icon.png">
    <Frame
        id="favorites-list-frame"
        row="0"
    >
        <CustomComponent/>
        
    </Frame>
</TabViewItem>

有没有办法把这些放大