@eohjsc/react-native-smart-city 0.4.75 → 0.4.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -127,7 +127,7 @@ const ItemDevice = memo(
|
|
|
127
127
|
size={14}
|
|
128
128
|
color={Colors.Gray9}
|
|
129
129
|
style={
|
|
130
|
-
Platform.OS === 'ios' ? styles.
|
|
130
|
+
Platform.OS === 'ios' ? styles.iosStyle : styles.androidStyle
|
|
131
131
|
}
|
|
132
132
|
>
|
|
133
133
|
{title}
|
|
@@ -163,11 +163,13 @@ const styles = StyleSheet.create({
|
|
|
163
163
|
justifyContent: 'space-between',
|
|
164
164
|
alignItems: 'center',
|
|
165
165
|
},
|
|
166
|
-
|
|
167
|
-
|
|
166
|
+
iosStyle: {
|
|
167
|
+
lineHeight: 22,
|
|
168
168
|
},
|
|
169
|
-
|
|
169
|
+
androidStyle: {
|
|
170
170
|
lineHeight: 22,
|
|
171
|
+
includeFontPadding: false,
|
|
172
|
+
marginBottom: 8,
|
|
171
173
|
},
|
|
172
174
|
lineHeight20: {
|
|
173
175
|
lineHeight: 20,
|