Skip to content
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.

Commit

Permalink
readme and image updates
Browse files Browse the repository at this point in the history
  • Loading branch information
RazerMoon committed Feb 26, 2021
1 parent 6420466 commit ba187d4
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 7,360 deletions.
7 changes: 4 additions & 3 deletions .expo-shared/assets.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"ec72f44c26176596b3f8f4ff2733f1c6a0f87fe6224a117439a1caea409505fd": true,
"6e330abf92f6e49715485f1693e2f478e99356d43bf6f6092fc7f7f22c8680b0": true,
"e5fe5c7f6a4d1ec1c2fcc7e11964cb435621fd5c2614692e48a6e35d086e68da": true,
"24272cdaeff82cc5facdaccd982a6f05b60c4504704bbf94c19a6388659880bb": true,
"5deb055be550b37ca358a297078e0b7f15f2a3f95c0c5cfb6db9c9e376cc7900": true,
"a6e8d411aca0ff090240d14acbd91ebb042e7c25efa95deea3e7decf80ea0cf2": true
"92f499eeaa052e30eba191e00804b40516b9df9d7305e0c1ada68f6dd216ca7c": true,
"55493a127225583ff70baf4f69d98187f8c7d8e0e97fdf0e7ae94c8f6f5e147f": true
}
Binary file added .github/images/home_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/home_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ web-build/
# macOS
.DS_Store
assets/licenses.json

yarn-error.log
2 changes: 1 addition & 1 deletion App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const defaultScores: ScoresContextType = {

export default function App(): JSX.Element {
const [fontsLoaded] = useFonts({ Inter_300Light, Inter_600SemiBold });
const [dark, setDark] = useState(false);
const [dark, setDark] = useState(true);
const [data, setScores] = useState(defaultScores);
const [theme, setTheme] = useState(DarkTheme);

Expand Down
31 changes: 26 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# expo-typescript-starter
Expo + Typescript starter template
# Leaving Cert CAO Points Calculator

# Additional resources:
* [Dev post](https://dev.to/yovanylg/the-easiest-way-to-begin-with-expo-typescript-eslint-and-prettier-3dj1) that explains how to configure Expo, Typescript, ESLint and Prettier.
* [Gist](https://gist.github.com/yovany-lg/104ed47e74d1ba64f68d79a3e5f76e91) with simplified steps of the Dev post.
Helps calculate how many CAO points you need to qualify for a course.

| Dark | Light |
|:----:|:----|
| ![Dark](.github/images/home_dark.png) | ![Light](.github/images/home_light.png) |

## Usage

### Option 1

Get from Releases page

### Option 2

Install dependencies

```
yarn
```

Start

```
yarn start
```
Binary file modified assets/adaptive-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/contexts/DarkModeContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const DarkModeContext = React.createContext<{
dark: boolean;
setDark: React.Dispatch<React.SetStateAction<boolean>>;
}>({
dark: false,
dark: true,
setDark: () => {
return null;
},
Expand Down
7,350 changes: 0 additions & 7,350 deletions yarn-error.log

This file was deleted.

0 comments on commit ba187d4

Please sign in to comment.