Setting the file. One moment.
Skill 02 · Stitch::react Native
Subchapter 2.7
resources/architecture-checklist.mdMarkdown2 KBView on GitHub
src/components/.src/hooks/.src/data/mockData.ts.[ComponentName]Props interface with readonly property modifiers.StitchComponent) have been replaced with actual names.NativeStackScreenProps or equivalent.div, span, p, img, button). Only React Native components.Text components. No raw strings inside View.Pressable used for interactive elements (not TouchableOpacity or TouchableHighlight).FlatList used for dynamic/long lists (not ScrollView with .map()).Image components have explicit width and height or aspectRatio.StyleSheet.create() at the bottom of the file.StyleSheet references).src/theme.ts.Platform.select() for iOS/Android differences.flexDirection explicitly set where row layout is needed (default is column).accessibilityLabel and accessibilityRole.accessibilityLabel.accessibilityState.SafeAreaView from react-native-safe-area-context.Platform.select() or Platform.OS checks.useWindowDimensions() (not hardcoded pixel values for screen-relative sizing).