Quail is a minimalist React Native, Expo mobile to do list application. Built with a monorepo architecture, and yarn workspaces.
By Isaac Moreno 👨💻
- Clone the
expo-to-do-list
repository.
git clone https://github.com/isaacrmoreno/expo-to-do-list.git
-
From the root directory install the node_modules with
yarn
. -
Either run...
yarn start
from the root directory or...expo start
from the apps/mobile directory... and you should be off to the races and ready for development! 🏇
The application utilizes inline styling with twrnc.
import { View, Text } from 'react-native';
import tw from 'twrnc';
const MyComponent = () => (
<View style={tw`p-4 bg-white`}>
<Text style={tw`text-md text-black`}>Hello World</Text>
</View>
);
We use React Natives useColorScheme hook for dark mode.
Like Quail? Let us know!
MIT License © 2022 Isaac Moreno