Skip to content

Commit 5212c13

Browse files
committed
lot of bruh
1 parent 9491b90 commit 5212c13

File tree

13 files changed

+387
-43
lines changed

13 files changed

+387
-43
lines changed

.expo-shared/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
> Why do I have a folder named ".expo-shared" in my project?
2+
3+
The ".expo-shared" folder is created when running commands that produce state that is intended to be shared with all developers on the project. For example, "npx expo-optimize".
4+
5+
> What does the "assets.json" file contain?
6+
7+
The "assets.json" file describes the assets that have been optimized through "expo-optimize" and do not need to be processed again.
8+
9+
> Should I commit the ".expo-shared" folder?
10+
11+
Yes, you should share the ".expo-shared" folder with your collaborators.

.expo-shared/assets.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
{
2-
"12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true,
3-
"40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true
4-
}
1+
{}

App.jsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { COLOURS } from "./lib/colors/colors";
88
import AppLoading from "expo-app-loading";
99
import loadFonts from "./functions/loadFonts";
1010
import EyeTest from "./screens/EyeTest";
11-
import SleepMusic from "./screens/SleepMusic";
1211

1312
const Drawer = createDrawerNavigator();
1413

@@ -53,11 +52,6 @@ const App = () => {
5352
component={EyeTest}
5453
options={{ headerShown: false }}
5554
/>
56-
<Drawer.Screen
57-
name="Sleep Music"
58-
component={SleepMusic}
59-
options={{ headerShown: false }}
60-
/>
6155
</Drawer.Navigator>
6256
</NavigationContainer>
6357
</React.Fragment>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ We do not collect any of your personal data, neither manually or automatically.
2121

2222
### How and When do we process your device properties?
2323

24-
- Status Bar Color is processed the time you open the app. The background of the status bar is changed to the theme color of the app and the text color to white. Your status bar settings will change when you exit the app.
24+
- Status Bar Color is processed the time you open the app. The background of the status bar is changed to the theme color of the app . Your status bar settings will change when you exit the app.
2525
- We use your clipboard not to retrieve information but only to set the results of the tools in the app.
2626

2727
### Links to other Websites

app.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@
1414
"fallbackToCacheTimeout": 0
1515
},
1616
"assetBundlePatterns": ["**/*"],
17-
"ios": {
18-
"supportsTablet": false
19-
},
2017
"android": {
2118
"adaptiveIcon": {
2219
"foregroundImage": "./assets/logo.png",
2320
"backgroundColor": "#6200ee"
24-
}
21+
},
22+
"package": "com.aviralcoder.toolkit",
23+
"versionCode": 1
2524
},
2625
"web": {
2726
"favicon": "./assets/logo.png"

assets/graphic.png

54.1 KB
Loading

assets/splash.png

-33.4 KB
Loading

components/Topbar.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from "react";
22
import { Appbar } from "react-native-paper";
33
import { StyleSheet, Linking, Alert } from "react-native";
4-
import { GITHUB_URL } from "../lib/constants/constants";
4+
import { GITHUB_URL, PRIVACY_LINK } from "../lib/constants/constants";
55
import Constants from "expo-constants";
66

77
const Topbar = ({ text, onIconClick }) => {
@@ -29,12 +29,12 @@ const Topbar = ({ text, onIconClick }) => {
2929
/>
3030

3131
<Appbar.Action
32-
icon="github"
32+
icon="card-text-outline"
3333
onPress={() => {
34-
Linking.openURL(GITHUB_URL).catch((err) => {
34+
Linking.openURL(PRIVACY_LINK).catch((err) => {
3535
Alert.alert(
3636
"Fail",
37-
`Opening the github repo failed - ${err}`,
37+
`Opening the privacy policy failed - ${err}`,
3838
[
3939
{
4040
text: "Okay",

lib/constants/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const GITHUB_URL = "https://github.com/AviralCoder/toolkit";
2-
export const PRIVACY_LINK =
2+
export const PRIVACY_LINK = "https://aviralcoder.github.io/toolkit/";
33
export const WORDS = [
44
"INDIA",
55
"HINDU",

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
},
1010
"dependencies": {
1111
"@react-native-async-storage/async-storage": "^1.15.9",
12-
"@react-native-community/clipboard": "^1.5.1",
1312
"@react-native-community/slider": "^4.1.8",
1413
"@react-navigation/drawer": "^6.1.6",
1514
"@react-navigation/native": "^6.0.4",
1615
"@react-navigation/native-stack": "^6.2.2",
1716
"expo": "~42.0.1",
1817
"expo-app-loading": "^1.1.2",
18+
"expo-clipboard": "~1.1.0",
1919
"expo-constants": "^11.0.1",
2020
"expo-dev-client": "^0.8.0",
2121
"expo-font": "^9.2.1",
@@ -29,7 +29,8 @@
2929
"react-native-safe-area-context": "3.2.0",
3030
"react-native-screens": "~3.4.0",
3131
"react-native-vector-icons": "^8.1.0",
32-
"react-native-web": "~0.13.12"
32+
"react-native-web": "~0.13.12",
33+
"sharp": "^0.29.3"
3334
},
3435
"devDependencies": {
3536
"@babel/core": "^7.9.0"

0 commit comments

Comments
 (0)