Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 699 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 699 Bytes

React Native, Expo Template

Getting Started

  1. replace directory name with your app name
  2. replace "_YOUR_APP_NAME_ with your app name
yarn
npx expo start

state managment

navigation

translations

const i18n = useTranslation();
...
i18n.t('navigation.mainNavigation.home'); // @/src/translations

light/dark theme

  • should be used with custom hook "useThemeColors"
const COLORS = useThemeColors();