简体   繁体   English

适用于Android和IOS React Native的选项卡栏图标的大小是多少

[英]What is the size of tab bar icon that works for Android and Ios in react native

I want to create custom icons in my tabbar (which created by react-native-router-flux ). 我想在我的标签栏中创建自定义图标(由react-native-router-flux创建 )。 Is there any restriction on the tab bar icon size in Ios and Android? Ios和Android中的标签栏图标大小是否受到限制?

In Ios, the recommended size is 30 x 30 while in Android the suggestion is 24 x 24. 在Ios中,建议尺寸为30 x 30,而在Android中,建议尺寸为24 x 24。

I don't want to create the icons respectively, so I wonder is there icon size that works on both platform. 我不想分别创建图标,所以我想知道在两个平台上都可以使用的图标大小吗?

Different sizes work as well but like you said they wouldn't follow the platform's specific guidelines. 不同的大小也可以使用,但是就像您说的那样,它们不会遵循平台的特定准则。 I would define the icon size like this: 我将这样定义图标大小:

import { Platform } from 'react-native';

const dimensions = {
  iconSize: (Platform.OS === 'ios') ? 30 : 24,
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 React Native Tabbar导航器选项卡图标未同时在android和ios中显示 - React native tabbar navigator tab icon not display in both android and ios React Native 在 Android 设备上崩溃,但在 iOS 上工作 - React Native crashes on Android device but works on iOS React Native Android Undefined不是在IOS中起作用的功能 - React native android undefined is not a function works in IOS Android:自定义选项卡图标大小 - Android: Custom Tab Icon Size 反应本机导航选项卡栏 - react native navigation tab bar Android 标题栏图标大小 - Android title bar icon size React Navigation选项卡导航导航在Android上不起作用(在iOS上运行正常) - React Navigation tab navigation navigate not working on Android (works fine on iOS) React Native Push Notifications 在 Android 中不工作,但在 iOS 上工作正常 - React Native Push Notifications not working in Android but works fine on iOS react-native-notifications 适用于 iOS,在 Android 上失败 - react-native-notifications works on iOS, failed on Android React Native onPanResponderGrant 在 Android 中未调用,但在 iOS 中运行良好 - React Native onPanResponderGrant is not called in Android but it works fine in iOS
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM