Home
last modified time | relevance | path

Searched refs:small (Results 1 – 25 of 179) sorted by relevance

12345678

/expo/packages/expo-dev-client-components/src/
H A DImage.tsx15 height: scale.small,
16 width: scale.small,
18 small: {
19 height: iconSize.small,
20 width: iconSize.small,
35 small: { borderRadius: borderRadius.small },
H A Dtheme.ts12 small: spacing[3], constant
58 small: { borderRadius: borderRadius.small },
66 small: { borderTopLeftRadius: borderRadius.small, borderTopRightRadius: borderRadius.small },
77 small: {
78 borderBottomLeftRadius: borderRadius.small,
79 borderBottomRightRadius: borderRadius.small,
99 small: typography.fontSizes[12],
/expo/packages/expo-dev-launcher/bundle/screens/
H A DExtensionsScreen.tsx84 <View px="small">
89 size="small"
103 <View border="default" px="small" py="2" rounded="small">
116 size="small"
158 <View py="small">
172 <View py="small">
190 size="small"
243 <View py="small" px="small">
271 <View bg="default" py="small" px="small" roundedTop="none" roundedBottom="large">
288 <View px="small">
[all …]
H A DBranchesScreen.tsx41 <View py="small" px="small">
42 <Heading size="small" color="secondary">
58 <View align="centered" mt="small">
61 size="small"
71 <View align="centered" mt="small">
74 size="small"
82 <View px="small" mt="medium">
83 <Text size="small" color="secondary">
88 <Spacer.Vertical size="small" />
165 <View py="small" px="small">
[all …]
H A DKitchenSinkScreen.tsx52 <Spacer.Vertical size="small" />
56 <Spacer.Horizontal size="small" />
58 <Spacer.Horizontal size="small" />
61 <Spacer.Vertical size="small" />
64 <Spacer.Horizontal size="small" />
66 <Spacer.Horizontal size="small" />
73 <Spacer.Vertical size="small" />
76 <Spacer.Vertical size="small" />
79 <Spacer.Horizontal size="small" />
81 <Spacer.Vertical size="small" />
H A DCrashReportScreen.tsx62 <View px="small">
69 <Row px="medium" py="small" align="center">
79 <Row px="small" align="center">
82 <Row margin="small">
87 <Row px="small">
90 <Row margin="small">
96 <Row px="small">
100 <Row px="small">
H A DSettingsScreen.tsx99 <Spacer.Horizontal size="small" />
126 <Spacer.Horizontal size="small" />
145 <Spacer.Horizontal size="small" />
155 <View padding="small">
270 <Text color="secondary" size="small">
359 <Heading size="small" color="secondary">
362 <Spacer.Vertical size="small" />
365 <View bg="default" rounded="large" py="small" px="small">
375 <Spacer.Vertical size="small" />
377 <Heading size="small" color="secondary">
[all …]
H A DHomeScreen.tsx117 <View px="medium" py="small" mt="small">
132 <Row px="small" align="center">
152 <Spacer.Vertical size="small" />
262 <Spacer.Horizontal size="small" />
268 <Spacer.Horizontal size="small" />
301 <Row align="center" py="small">
302 <Spacer.Horizontal size="small" />
328 py="small"
351 <Spacer.Horizontal size="small" />
406 <Spacer.Vertical size="small" bg="default" />
[all …]
/expo/packages/expo-dev-menu/app/components/
H A DMain.tsx172 <View mx="small">
196 <View margin="small">
216 <View mx="small">
284 <View mx="small">
397 <Spacer.Horizontal size="small" />
410 <Row px="small" align="center">
413 <View shrink="1" px="small">
449 <Row padding="small" align="center">
454 <Spacer.Horizontal size="small" />
474 <Row px="small" align="center">
[all …]
/expo/packages/expo-dev-launcher/bundle/components/
H A DEASUpdatesRows.tsx78 <View style={{ paddingLeft: scale.small }}>
83 <Spacer.Vertical size="small" />
91 <Spacer.Horizontal size="small" />
98 <Text size="small" color="secondary">
103 <Spacer.Vertical size="small" />
110 <Spacer.Vertical size="small" />
166 <Spacer.Vertical size="small" />
203 <Spacer.Vertical size="small" />
210 <Spacer.Horizontal size="small" />
217 <Text size="small" color="secondary">
[all …]
H A DDevServerExplainerModal.tsx9 <Spacer.Vertical size="small" />
11 <Spacer.Vertical size="small" />
14 <Text type="mono" size="small">
21 <Spacer.Vertical size="small" />
H A DEmptyBranchesMessage.tsx33 <Spacer.Vertical size="small" />
34 <Text color="secondary" size="small">
37 <Spacer.Vertical size="small" />
40 … size="small">{`The runtime version of this development build is "${runtimeVersion}".`}</Text>
41 <Spacer.Vertical size="small" />
42 <Text color="secondary" size="small">
74 <Spacer.Vertical size="small" />
76 <Spacer.Vertical size="small" />
77 <Text color="secondary" size="small">
H A DAppHeader.tsx39 pt="small"
40 pb="small"
51 <Spacer.Horizontal size="small" />
57 <Text size="small" color="secondary">
72 <View rounded="full" padding="small">
85 <View mx="small">
H A DBasicButton.tsx12 size?: 'medium' | 'small';
17 const sizeMap: Record<'medium' | 'small', any> = {
22 small: {
59 <ActivityIndicator size="small" />
/expo/docs/ui/components/DocIcons/
H A DNoIcon.tsx5 export const NoIcon = ({ small }: DocIconProps) => (
6 <IconBase Icon={StatusFailureIcon} className="text-icon-danger" small={small} />
H A DYesIcon.tsx5 export const YesIcon = ({ small }: DocIconProps) => (
6 <IconBase Icon={StatusSuccessIcon} className="text-icon-success" small={small} />
H A DPendingIcon.tsx5 export const PendingIcon = ({ small }: DocIconProps) => (
6 <IconBase Icon={StatusWaitingIcon} className="text-icon-warning" small={small} />
H A DWarningIcon.tsx5 export const WarningIcon = ({ small }: DocIconProps) => (
6 <IconBase Icon={AlertTriangleSolidIcon} className="text-icon-warning" small={small} />
H A DIconBase.tsx8 small?: boolean;
11 export const IconBase = ({ className, small, Icon, ...rest }: DocIconProps) => {
18 small ? 'icon-sm' : 'icon-md',
/expo/home/screens/HomeScreen/
H A DDevelopmentServersHeader.tsx12 <Row px="small" py="small" align="center" justify="between">
19 size="small"
29 size="small"
H A DRecentlyOpenedHeader.tsx12 <Row px="small" py="small" align="center" justify="between">
15 size="small"
/expo/home/components/
H A DSectionHeader.tsx13 <Row px="small" py="small" align="center" style={style}>
16 size="small"
/expo/packages/expo-clipboard/ios/
H A DClipboardPasteButtonRecords.swift9 case small
24 case .small: in toCornerStyle()
25 return .small in toCornerStyle()
/expo/ios/versioned/sdk49/ExpoClipboard/
H A DClipboardPasteButtonRecords.swift9 case small
24 case .small: in toCornerStyle()
25 return .small in toCornerStyle()
/expo/home/screens/DeleteAccountScreen/
H A DConfirmationStep.tsx36 <Spacer.Vertical size="small" />
41 <Spacer.Horizontal size="small" />
44 <Spacer.Vertical size="small" />
61 <Spacer.Vertical size="small" />
65 <Spacer.Vertical size="small" />
77 <Spacer.Vertical size="small" />

12345678