Skip to content

Commit 46a257f

Browse files
committed
Update package.json dependencies and improve layout in RandomPassword screen
1 parent 433daff commit 46a257f

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

bun.lockb

978 Bytes
Binary file not shown.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "TechTriangle",
2+
"name": "tech-triangle",
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {
@@ -19,32 +19,32 @@
1919
"prettier:fix": "prettier --write ."
2020
},
2121
"dependencies": {
22-
"@react-native-clipboard/clipboard": "^1.15.0",
22+
"@react-native-clipboard/clipboard": "^1.16.1",
2323
"@react-native-community/netinfo": "^11.4.1",
2424
"@react-native-masked-view/masked-view": "^0.3.2",
2525
"@react-navigation/bottom-tabs": "^7.2.0",
2626
"@react-navigation/native": "^7.0.14",
2727
"@react-navigation/stack": "^7.1.1",
28-
"@shopify/react-native-skia": "^1.5.8",
29-
"@tanstack/react-query": "^5.62.12",
28+
"@shopify/react-native-skia": "^1.10.2",
29+
"@tanstack/react-query": "^5.64.1",
3030
"clsx": "^2.1.1",
3131
"hono": "^4.6.16",
32-
"lottie-react-native": "^7.1.0",
32+
"lottie-react-native": "^7.2.1",
3333
"nativewind": "^4.1.23",
3434
"react": "18.3.1",
3535
"react-native": "0.76.3",
3636
"react-native-device-info": "^14.0.2",
3737
"react-native-geolocation-service": "^5.3.1",
38-
"react-native-gesture-handler": "^2.21.2",
38+
"react-native-gesture-handler": "^2.22.0",
3939
"react-native-linear-gradient": "^2.8.3",
4040
"react-native-mmkv": "^3.2.0",
4141
"react-native-reanimated": "3.16.3",
42-
"react-native-safe-area-context": "^5.0.0",
43-
"react-native-screens": "^4.4.0",
44-
"react-native-svg": "^15.9.0",
42+
"react-native-safe-area-context": "^5.1.0",
43+
"react-native-screens": "^4.5.0",
44+
"react-native-svg": "^15.11.1",
4545
"tailwind-merge": "^2.6.0",
4646
"zod": "^3.24.1",
47-
"zustand": "^5.0.2"
47+
"zustand": "^5.0.3"
4848
},
4949
"devDependencies": {
5050
"@babel/core": "^7.25.2",

src/screens/Try/RandomPassword.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default function RandomPassword({ navigation }: NavProp) {
8484
</SettGroup>
8585
<SettGroup>
8686
{generatedPassword ? (
87-
<View className='flex-row justify-between px-5 py-3'>
87+
<View className='flex-row items-center justify-between py-2 px-5'>
8888
<TouchableOpacity
8989
activeOpacity={0.7}
9090
onPress={() => {
@@ -97,7 +97,7 @@ export default function RandomPassword({ navigation }: NavProp) {
9797
</SemiBold>
9898
</TouchableOpacity>
9999
<TouchableOpacity onPress={generatePassword}>
100-
<ReloadIcon height={22} width={22} color={Colors.accent} />
100+
<ReloadIcon height={23} width={23} color={Colors.accent} />
101101
</TouchableOpacity>
102102
</View>
103103
) : (

0 commit comments

Comments
 (0)