Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 2.67 KB

napkin.md

File metadata and controls

21 lines (20 loc) · 2.67 KB
~/AppData/Local/Android/Sdk/platform-tools$ ./adb.exe version
  • Core components
  • The <View> allows you to group other components together, structure them (i.e. provide a layout) and (optionally) add some container styling
  • The default styling/layout behavior of a <View> component uses Flexbox to organize its child components
  • alignItems positions elements along the cross axis. For flexDirection: 'column', the cross axis is the horizontal axis
  • The core difference between <FlatList> and <ScrollView> is that FlatList optimizes scrolling by only rendering what's required. Sometimes you might want to use <RecyclerListView>
  • Define a new Expo entry point
  • Debug RN with react-devtools
  • Toggle menu (press m or Command D on iOS or Control M on Android)
  • elevation style prop adds a drop shadow to the item and affects z-order for overlapping views. O iOS devices it can be replicated using the shadow- style prop
  • <ImageBackground> source code
  • OpenSans: bold, regular
  • Images: background, success
  • Check for TypeScript errors then lint the files: npx tsc --noEmit && eslint
  • How to disable the default splash screen?
  • Configure the orientation mode