Skip to content

Commit 9de48d7

Browse files
committed
Add Weather components
1 parent adf7ebf commit 9de48d7

File tree

20 files changed

+336
-199
lines changed

20 files changed

+336
-199
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ jobs:
3636
- name: Upload Artifact
3737
uses: actions/upload-artifact@v4
3838
with:
39-
name: computer-science.apk
40-
path: android/app/build/outputs/apk/release/Tech_Triangle-arm64-v8a.apk
39+
name: tech-triangle
40+
path: android/app/build/outputs/apk/release/Tech_Triangle-arm64-v8a.apk

src/assets/icons/icons.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,4 @@ export { default as ListSettingIcon } from '@icons/list-setting-stroke-rounded.s
124124
export { default as HumiditySolidIcon } from '@icons/humidity-solid-rounded.svg'
125125

126126
export { default as EyeSolidIcon } from '@icons/eye-solid-rounded.svg'
127+
export { default as NaturalFoodSolidIcon } from '@icons/natural-food-solid-rounded.svg'

src/assets/icons/src/compass.svg

Lines changed: 0 additions & 131 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Loading

src/components/StackHeader.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ export default function StackHeader({
2626
navigation,
2727
}: CardHeaderProps) {
2828
return (
29-
<View className='w-full flex-row items-center justify-between pb-1.5' style={{ gap: 5 }}>
29+
<View className='w-full flex-row items-center justify-between pb-1' style={{ gap: 5 }}>
3030
<View className='items-start' style={{ flex: 1 }}>
3131
<TouchableOpacity onPress={LeftOnPress || (() => navigation.goBack())} activeOpacity={0.7}>
3232
{Left || (
33-
<Medium className='px-0.5 py-1.5 pb-1 text-accent' style={{ fontSize: 13 }} numberOfLines={1}>
33+
<Medium className='px-0.5 py-1 pb-1 text-accent' style={{ fontSize: 13 }} numberOfLines={1}>
3434
{left}
3535
</Medium>
3636
)}
@@ -44,7 +44,7 @@ export default function StackHeader({
4444
<View className='flex-1 items-end'>
4545
<TouchableOpacity onPress={RightOnPress || (() => navigation.goBack())} activeOpacity={0.7}>
4646
{Right || (
47-
<Medium className='px-0.5 py-1 pb-1.5 text-accent' style={{ fontSize: 13 }}>
47+
<Medium className='px-0.5 py-1 pb-1 text-accent' style={{ fontSize: 13 }}>
4848
{right}
4949
</Medium>
5050
)}

src/screens/Settings/Extra/About.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import AppIcon from '@assets/icons/icon.svg'
77
export default function About() {
88
return (
99
<View className='flex-1 items-center justify-center'>
10-
<View className='bg-appIconBg my-5 p-1' style={{ borderRadius: 35 }}>
10+
<View className='my-5 bg-appIconBg p-1' style={{ borderRadius: 35 }}>
1111
<AppIcon width={150} height={150} />
1212
</View>
1313
<SemiBold className='text-base text-black dark:text-white'>Tech Triangle</SemiBold>
14-
<SemiBold className='text-black/50 text-xs dark:text-white'>v{APP_VERSION}</SemiBold>
14+
<SemiBold className='text-xs text-black/50 dark:text-white'>v{APP_VERSION}</SemiBold>
1515
</View>
1616
)
1717
}

0 commit comments

Comments
 (0)