Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 1495) sorted by relevance

12345678910>>...60

/expo/docs/public/static/
H A Dtalks.ts3 title: "Keynote: community & workflows",
10 title: "EAS: Iterate with confidence",
17 title: "Expo Router: Write Once, Route Everywhere",
24 title: "Debugging should be easier",
31 title: 'React Native on Linux with the New Architecture',
37 title: 'Not your grandparents’ Expo',
43 title: 'Expo keynote',
49 title: 'The Hidden Features from V8 to Boost React Native',
55 title: 'Publish Updates with Expo and React Native',
61 title: 'Limitless App Development',
[all …]
/expo/docs/components/plugins/
H A DPlatformsSection.tsx9 { title: 'Android Device', propName: 'android' },
11 { title: 'iOS Device', propName: 'ios' },
13 { title: 'Web', propName: 'web' },
23 title: `${title} is supported`,
32 title: `${title} support is pending`,
38 title: `${title} is not supported`,
43 title?: string;
51 type PlatformProps = Omit<Props, 'title'>;
59 {platforms.map(({ title }) => (
60 <HeaderCell key={title}>{title}</HeaderCell>
[all …]
/expo/apps/native-component-list/src/screens/Location/
H A DLocationScreen.tsx12 title: string;
38 return <SimpleActionDemo title={props.title} action={toggle} />;
45 title: 'Location',
68 title="getPermissionsAsync (legacy)"
76 title="getForegroundPermissionsAsync"
84 title="getBackgroundPermissionsAsync"
88 title="hasServicesEnabledAsync"
92 title="getProviderStatusAsync"
106 title="getLastKnownPositionAsync"
110 title="watchPositionAsync"
[all …]
/expo/docs/common/
H A DheadingManager.ts53 title: string;
106 title: React.ReactNode,
113 title = Array.isArray(title) ? title.map(Utilities.toString).join(' ') : title;
118 const slug = id ?? Utilities.generateSlug(this.slugger, title);
119 const realTitle = Utilities.toString(title);
122 const type = sidebarType || (this.isCode(title) ? HeadingType.InlineCode : HeadingType.Text);
125 title: sidebarTitle ?? realTitle,
149 heading => heading.title === realTitle && !heading._processed
163 private isCode(title: any): boolean {
164 if (!title.props) {
[all …]
/expo/apps/native-component-list/src/screens/
H A DButtonScreen.tsx10 <Section title="Default">
11 <Button title="Hello Universe" onPress={() => {}} />
13 <Section title="Custom Color">
14 <Button color={Colors.tintColor} title="Blurple" onPress={() => {}} />
16 <Section title="Disabled">
17 <Button disabled title="Disabled" onPress={() => {}} />
24 title: 'Button',
H A DNavigationBarScreen.tsx47 <Section title="Visibility">
50 <Section title="Appearance">
53 <Section title="Background Color">
56 <Section title="Border Color">
59 <Section title="Position">
62 <Section title="Behavior">
71 title: 'Navigation Bar',
79 title={`Toggle Visibility: ${nextVisibility}`}
91 title="Set background color to random color"
100 title="Set border color to random color"
[all …]
H A DCheckboxScreen.tsx12 <Section title="Default">
15 <Section title="Custom Color">
18 <Section title="Disabled">
22 <Section title="Larger">
31 title: 'Checkbox',
H A DPickerScreen.tsx12 <Section title="Standard">
17 <Section title="Item style">
23 <Section title="PickerIOS">
37 <Section title="Disabled">
43 <Section title="Multiline picker item">
51 <Section title="Single line picker item">
59 <Section title="Dropdown mode">
65 <Section title="Prompt">
71 <Section title="Focus Ref">
77 <Section title="Larger">
[all …]
/expo/apps/native-component-list/src/screens/AV/
H A DAudioModeSelector.android.tsx49 title,
54 title: string;
82 title,
86 title: string;
92 title={`${this.state.modeToSet.interruptionModeAndroid === value ? '✓ ' : ''}${title}`}
101 title: 'Should be ducked',
105 title: 'Play through earpiece',
109 title: 'Stay active in background',
113 title: 'Do not mix',
117 title: 'Duck others',
[all …]
H A DAudioModeSelector.ios.tsx49 title,
54 title: string;
82 title,
86 title: string;
92 title={`${this.state.modeToSet.interruptionModeIOS === value ? '✓ ' : ''}${title}`}
101 title: 'Plays in silent mode',
105 title: 'Allows recording',
117 title: 'Mix with others',
121 title: 'Do not mix',
126 title: 'Duck others',
[all …]
/expo/apps/native-component-list/src/components/
H A DTitledSwitch.tsx8 title?: string;
14 const TitleSwitch = ({ style, titleStyle, title, value, setValue, disabled }: Props) => {
15 const outputTitle = disabled ? `${title} (Disabled)` : title;
18 <B style={[styles.title, titleStyle]}>{outputTitle}</B>
31 title: {
H A DTitledPicker.tsx9 title?: string;
16 const TitledPicker = ({ style, titleStyle, title, value, setValue, items, disabled }: Props) => {
17 const outputTitle = disabled ? `${title} (Disabled)` : title;
20 <B style={[styles.title, titleStyle]}>{outputTitle}</B>
40 title: {
/expo/packages/@expo/cli/src/start/server/middleware/inspector/__tests__/fixtures/
H A DmetroInspectorResponse.ts10 title: 'Hermes React Native',
21 title: 'React Native Experimental (Improved Chrome Reloads)',
32 title: 'Hermes React Native',
43 title: 'React Native Experimental (Improved Chrome Reloads)',
/expo/docs/components/
H A DHead.tsx4 type HeadProps = PropsWithChildren<{ title?: string; description?: string }>;
9 const Head = ({ title, description, children }: HeadProps) => (
11 <title>{title ? `${title} - ${BASE_TITLE}` : BASE_TITLE}</title>
18 <meta property="og:title" content={title} />
29 <meta property="twitter:title" content={title} />
/expo/docs/ui/components/Footer/
H A DLinks.tsx9 export const IssuesLink = ({ title, repositoryUrl }: { title: string; repositoryUrl?: string }) => (
15 repositoryUrl ? `${repositoryUrl}/issues` : `https://github.com/expo/expo/labels/${title}`
19 <CALLOUT theme="secondary">View open bug reports for {title}</CALLOUT>
24 export const ForumsLink = ({ isAPIPage, title }: { isAPIPage: boolean; title: string }) =>
30 href={`https://forums.expo.dev/tag/${title}`}
33 <CALLOUT theme="secondary">Ask a question on the forums about {title}</CALLOUT>
H A DFooter.tsx12 title: string;
17 export const Footer = ({ title, sourceCodeUrl, packageName }: Props) => {
25 <ForumsLink isAPIPage={isAPIPage} title={title} />
27 <IssuesLink title={title} repositoryUrl={isExpoPackage ? undefined : sourceCodeUrl} />
/expo/packages/create-expo/src/
H A DlegacyTemplates.ts8 title: 'Blank',
14 title: 'Blank (TypeScript)',
19 title: 'Navigation (TypeScript)',
25 title: 'Blank (Bare)',
/expo/apps/native-component-list/src/navigation/
H A DExpoComponentsStackNavigator.tsx44 options: { title: 'Basic Mask Example' },
129 options: { title: 'QR Code' },
142 options: { title: 'Examples of GL use' },
149 options: { title: 'Clear to blue' },
157 options: { title: 'Basic texture use' },
165 options: { title: 'GLView example' },
181 options: { title: 'Taking snapshots' },
229 options: { title: 'Basic pixi.js use' },
293 options: { title: 'Pinch and Rotate' },
307 options: { title: 'Swipeable Rows' },
[all …]
/expo/home/screens/HomeScreen/DevelopmentServerListItem/
H A DDevelopmentServerSubtitle.tsx6 title?: string;
13 title,
18 const isCentered = !title && !image;
26 !title ? styles.subtitleMarginBottom : undefined,
31 numberOfLines={title ? 1 : 2}>
/expo/apps/native-component-list/src/screens/Reanimated/
H A DReanimatedSwipeable.tsx25 title: string;
30 title: 'Kate Bell',
34 title: 'John Appleseed',
38 title: 'Steve Jobs',
42 title: 'Iron Man',
50 title: 'Batman',
54 title: 'Matt Smith',
152 title: 'Delete',
173 title: string;
194 <Text style={s.title}>{item.title}</Text>
[all …]
/expo/apps/native-component-list/src/screens/Image/
H A DImageFormatsScreen.tsx17 title: 'Animated WebP',
33 title: 'GIF',
41 title: 'Animated AVIF',
49 title: 'HEIC',
57 title: 'Animated HEIC',
65 title: 'JPEG',
81 title: 'SVG',
97 title: 'ICO',
105 title: 'ICNS',
125 <HeadingText style={styles.title}>{section.title}</HeadingText>
[all …]
/expo/docs/components/plugins/ConfigSection/
H A DConfigReactNative.tsx5 type Props = PropsWithChildren<object> & { title?: string; abstract?: boolean };
7 export const ConfigReactNative = ({ children, abstract, title }: Props) => {
9 title ??= 'Are you using this library in a bare React Native app?';
11 title ??= 'Working in a bare React Native app?';
22 return <Collapsible summary={title}>{children}</Collapsible>;
/expo/packages/@expo/cli/src/utils/__tests__/
H A Dprompts-test.ts6 const choices = [{ title: 'bacon' }, { title: `\\hey` }];
12 expect(await filter(search, choices)).toEqual([{ title: result }]);
/expo/apps/native-component-list/src/screens/GL/
H A DProcessingWrap.tsx8 …* Given a `title` and a processing.js `sketch` function, return a component displaying that Proces…
9 * @param title string
15 title: string,
30 wrapped.title = title;
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/Lists/__tests__/__snapshots__/
H A DVirtualizedSectionList-test.js.snap16 "title": "outer",
244 title="i0"
283 title="i1"
321 title="i2"
377 title="i0"
416 title="i1"
454 title="i2"
510 title="i0"
549 title="i1"
588 title="i2"
[all …]

12345678910>>...60