An open API service indexing awesome lists of open source software.

https://github.com/saddamarbaa/expense-tracker-app-reactnative-typescript

==> Expense tracker app built with React Native, TypeScript, and Expo. Utilizes key React Native features and powerful tools.
https://github.com/saddamarbaa/expense-tracker-app-reactnative-typescript

context-api expo hooks react-native reactnavigation reatcjs typescript

Last synced: 6 months ago
JSON representation

==> Expense tracker app built with React Native, TypeScript, and Expo. Utilizes key React Native features and powerful tools.

Awesome Lists containing this project

README

          

# TypeScript Example



Supports Expo iOS

Supports Expo Android

Supports Expo Web

```sh
npx create-react-native-app -t with-typescript
```

TypeScript is a superset of JavaScript which gives you static types and powerful tooling in Visual Studio Code including autocompletion and useful inline warnings for type errors.

## 🚀 How to use

#### Creating a new project

- Install the CLI: `npm i -g expo-cli`
- Create a project: `npx create-react-native-app -t with-typescript`
- `cd` into the project

### Adding TypeScript to existing projects

- Create a blank TypeScript config: `touch tsconfig.json`
- Run `yarn start` or `npm run start` to automatically configure TypeScript
- Rename files to TypeScript, `.tsx` for React components and `.ts` for plain typescript files

> 💡 You can disable the TypeScript setup in Expo CLI with the environment variable `EXPO_NO_TYPESCRIPT_SETUP=1 expo start`

## 📝 Notes

- [Expo TypeScript guide](https://docs.expo.dev/versions/latest/guides/typescript/)