Thanks for this video. Please share part 2 video with us. I am learning a lot from you. I want to finish this beautiful project with you. Can you share the 2nd video where you will complete the missing things like filtering etc.?
Hi, can you please also add checkout functionality, search functionality, filter product screen, payment gateway screen in Part 2 of the video. By the way awesome video
Hi Vetrivel, first of all thank you so much for the time spent to help us learn RN with your amazing content. I'd like to know if you intend to start using expo router in your projects? Expo 49 is out!
sir how i push my remaining code to the GitHub i already make repo for this so how i push frontend code to the frontend repo and backend code to the backend repo in one main branch
please make sure that you configured it properly mainly on babel.config.js and tailwind.config.js.... and once its installed please restart the server....please check this link : www.nativewind.dev/
Make sure that its positioning is set correctly and not affected by the keyboard. Ensure that the component is anchored to the bottom of the screen using appropriate layout properties.
Hi, I am getting the warning on IOS platform Constants.platform.ios.model has been deprecated in favor of expo-device's Device.modelName property. This API will be removed in SDK 45. Can you please guide me what is this warning about and how to fix
Please note that the usage of Constants.platform.ios.model has been deprecated in favor of expo-device's Device.modelName property. Starting from SDK 45, this deprecated API will be removed. To ensure compatibility and future-proof your code, we recommend updating your codebase to use Device.modelName instead. Please refer to the Expo documentation for more information on how to access the device model name using expo-device. By adopting the latest practices, you can ensure a smooth transition and maintain compatibility with future SDK versions. Don't hesitate to reach out if you need further assistance.
i watched full videos but there is not adds thanks bro🥰🥰
Osam Project next awaiting for Full Stack Chat App with CLI and Firebase THanks
Thanks for this video. Please share part 2 video with us. I am learning a lot from you. I want to finish this beautiful project with you. Can you share the 2nd video where you will complete the missing things like filtering etc.?
Great video bro, please can you do a part 2!
Hi, can you please also add checkout functionality, search functionality, filter product screen, payment gateway screen in Part 2 of the video. By the way awesome video
😂
🤣🤣🤣
thanks, Ravi, does your paid course coverup the full ready-to-ship app?
Thanks sir am waiting this for a long time
Hi Vetrivel, first of all thank you so much for the time spent to help us learn RN with your amazing content. I'd like to know if you intend to start using expo router in your projects? Expo 49 is out!
Great suggestion! Let me look into it
@@VetrivelRavi I have a look at it, adn I can tell you that's amazing!
Please do share me the link ....
if using typescript and got error when typing className, create file "app.d.ts" in root and add one line with "/// ". After using "npm update" cmd
awesome tutorial thank you.
sir how i push my remaining code to the GitHub i already make repo for this so how i push frontend code to the frontend repo and backend code to the backend repo in one main branch
Thanks so much for this
In mac air, You are using 13 inch m2 or 15 inch m2, Which one is good for react native sir?
Both are same....when its comes to performance....But I am using amzn.to/3YbjHHY
Bro need some basics to advanced concepts tutorial with bacis application implementation??
snap.png is not available in assets folder
Good bro 👍
how can i download its source code?
🔥🔥
nice make a courier app next
Thanks Man Love From Pakistan And make Also with Authtication login or logout then you will get 100 with 100
for some reason tail wind css never worked for me on my expo project. I kept trying for hours
please make sure that you configured it properly mainly on babel.config.js and tailwind.config.js.... and once its installed please restart the server....please check this link : www.nativewind.dev/
i know your problem
Nae tab bar navigation la epdi U curve vaikradhu for selected tab ku pls tell me
Athuku svg animations use pannanum bro
@@VetrivelRavi epdi bro
nan prepare panni poduren bro soon
Bottom tab Navigation is coming up with keyboard , can anyone help me here ?
Make sure that its positioning is set correctly and not affected by the keyboard. Ensure that the component is anchored to the bottom of the screen using appropriate layout properties.
@@VetrivelRavi please have a look whenever u find some time , i tried multiple things but still facing same issue
@@VetrivelRavi i fixed it with below code import {
View,
TouchableOpacity,
Keyboard,
StyleSheet,
Dimensions,
} from "react-native";
import React from "react";
import { FontAwesome, MaterialIcons } from "@expo/vector-icons";
import { useNavigation } from "@react-navigation/native";
import { AntDesign } from "@expo/vector-icons";
const { width, height } = Dimensions.get("window");
const BottomTab = ({ activeScreen }) => {
const navigation = useNavigation();
const [keyboardShow, setKeyboardShow] = React.useState();
React.useEffect(() => {
const keyboardDidShowListener = Keyboard.addListener(
"keyboardDidShow",
() => {
setKeyboardShow(true);
}
);
const keyboardDidHideListener = Keyboard.addListener(
"keyboardDidHide",
() => {
setKeyboardShow(false);
}
);
return () => {
keyboardDidHideListener.remove();
keyboardDidShowListener.remove();
};
}, []);
return (
{keyboardShow ? (
) : (
navigation.navigate("Home")}>
navigation.navigate("WishListScreen")}
>
navigation.navigate("CartScreen")}>
navigation.navigate("LoginScreen")}
>
)}
);
};
const styles = StyleSheet.create({
container: {
width: width,
height: width / 5,
},
});
export default BottomTab;
brother can you make a video on how to create a wallpaper app in react native
Please check this out : ua-cam.com/video/OakwN2VM-WI/v-deo.html
Make clone of Dream11
P R O M O S M
Tamil layae pesalam la broo... Because tamil la yaarum ipdi pooda maataga
Tamil la channel start panniyachu bro....Ithe project tamil la seekiram upload panniruvom
Hi, I am getting the warning on IOS platform
Constants.platform.ios.model has been deprecated in favor of expo-device's Device.modelName property. This API will be removed in SDK 45.
Can you please guide me what is this warning about and how to fix
Please note that the usage of Constants.platform.ios.model has been deprecated in favor of expo-device's Device.modelName property. Starting from SDK 45, this deprecated API will be removed.
To ensure compatibility and future-proof your code, we recommend updating your codebase to use Device.modelName instead. Please refer to the Expo documentation for more information on how to access the device model name using expo-device.
By adopting the latest practices, you can ensure a smooth transition and maintain compatibility with future SDK versions. Don't hesitate to reach out if you need further assistance.