Skip to content

Commit fa7b441

Browse files
authored
Merge pull request #8 from piashcse/favorite
- Implemented favorite with zustand
2 parents bc4a13d + 5ca8704 commit fa7b441

31 files changed

+511
-46
lines changed

ios/Podfile.lock

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1620,6 +1620,27 @@ PODS:
16201620
- React-logger (= 0.76.1)
16211621
- React-perflogger (= 0.76.1)
16221622
- React-utils (= 0.76.1)
1623+
- RNCAsyncStorage (2.0.0):
1624+
- DoubleConversion
1625+
- glog
1626+
- hermes-engine
1627+
- RCT-Folly (= 2024.01.01.00)
1628+
- RCTRequired
1629+
- RCTTypeSafety
1630+
- React-Core
1631+
- React-debug
1632+
- React-Fabric
1633+
- React-featureflags
1634+
- React-graphics
1635+
- React-ImageManager
1636+
- React-NativeModulesApple
1637+
- React-RCTFabric
1638+
- React-rendererdebug
1639+
- React-utils
1640+
- ReactCodegen
1641+
- ReactCommon/turbomodule/bridging
1642+
- ReactCommon/turbomodule/core
1643+
- Yoga
16231644
- RNGestureHandler (2.20.2):
16241645
- DoubleConversion
16251646
- glog
@@ -1780,6 +1801,7 @@ DEPENDENCIES:
17801801
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
17811802
- ReactCodegen (from `build/generated/ios`)
17821803
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1804+
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
17831805
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
17841806
- RNScreens (from `../node_modules/react-native-screens`)
17851807
- RNSnackbar (from `../node_modules/react-native-snackbar`)
@@ -1922,6 +1944,8 @@ EXTERNAL SOURCES:
19221944
:path: build/generated/ios
19231945
ReactCommon:
19241946
:path: "../node_modules/react-native/ReactCommon"
1947+
RNCAsyncStorage:
1948+
:path: "../node_modules/@react-native-async-storage/async-storage"
19251949
RNGestureHandler:
19261950
:path: "../node_modules/react-native-gesture-handler"
19271951
RNScreens:
@@ -1999,6 +2023,7 @@ SPEC CHECKSUMS:
19992023
React-utils: 5362bd16a9563f9916e7a56c011ddc533507650f
20002024
ReactCodegen: 865bafc5c17ec2181620ced1a32c39c38ab2951d
20012025
ReactCommon: 422e364463f33e336fc4db196aeb50fd801d90d6
2026+
RNCAsyncStorage: 597673c6086d359029afefef8fd5859f1f35ab87
20022027
RNGestureHandler: fc5ce5bf284640d3af6431c3a5c3bc121e98d045
20032028
RNScreens: e389d6a6a66a4f0d3662924ecae803073ccce8ec
20042029
RNSnackbar: 37ce6daf19c8bd35cf6133db5797aa298c8782ac

package-lock.json

Lines changed: 65 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"lint": "eslint ."
1111
},
1212
"dependencies": {
13+
"@react-native-async-storage/async-storage": "^2.0.0",
1314
"@react-native-community/netinfo": "11.4.1",
1415
"@react-navigation/bottom-tabs": "^6.6.1",
1516
"@react-navigation/material-top-tabs": "^6.6.14",
@@ -29,7 +30,8 @@
2930
"react-native-vector-icons": "10.2.0",
3031
"react-redux": "^9.1.2",
3132
"redux": "^5.0.1",
32-
"redux-logger": "^3.0.6"
33+
"redux-logger": "^3.0.6",
34+
"zustand": "^5.0.1"
3335
},
3436
"devDependencies": {
3537
"@babel/core": "^7.26.0",

screenshots/1730480204304_100.PNG

-2.78 MB
Binary file not shown.

screenshots/1730480218847_100.PNG

-2.18 MB
Binary file not shown.

screenshots/1730480234480_100.PNG

-973 KB
Binary file not shown.

screenshots/1730480241388_100.PNG

-2.56 MB
Binary file not shown.

screenshots/1730741920629_100.PNG

1.14 MB
Loading

screenshots/1730741927781_100.PNG

1.65 MB
Loading

screenshots/1730741936047_100.PNG

2.33 MB
Loading

0 commit comments

Comments
 (0)