Mobile and Offline first app which allows you to
- Store your deepest secrets, your secrets never leaves
- Store your life journal
Your data stays private: Everything is done client-side and never leaves your device.
- Typescript
- Expo
- Expo EAS Services
- Expo SQLite
- Drizzle ORM
- Tailwind
- NativeWind
- Flashlist
https://expo.dev/@ipr0310/diaries-app
npx expo install
Install dependencies using exponpx expo start
Start a development server- Pressing
a
will open in an Android Emulator or connected device. - Pressing
i
will open in an iOS Simulator. - Pressing
w
will open in a web browser. Expo supports all major browsers.
- Pressing
Android Studio
/Xcode
installed
1 - npx expo prebuild
Generate native source code before compilation
2 - npx expo run
, npx expo run android
or npx expo run ios
https://docs.expo.dev/router/navigating-pages/
-
Stack navigation: Render a stack of screens like a deck of cards with a header on top. This is a native stack navigator that uses native animations and gestures.
-
Tab navigation: Render screens with a tab bar below them.
-
Drawers: Add a drawer which can be pulled over the current context.
-
Modals: Implement native modals which float over the current context.
function A({ rounded, className }) {
const className = clsx(
"font-bold",
{ rounded },
variant === "primary" && "bg-blue-500 text-white",
variant === "secondary" && "bg-blue-500 text-white",
className
);
return <B className={className} />;
}
https://orm.drizzle.team/docs/get-started-sqlite#expo-sqlite