React-Native Tutorials

21. justifyContent in React Native

By: Kelly G : 2023-04-08

Description: justifyContent is a flexbox property in React Native used to align child elements along the main axis of their container. It controls how extra space in the container is distributed among the child elements. Here's an example to help understand how justifyContent works:


22. Layout direction property in React Native

By: Kelly G : 2023-04-08

Description: The layout direction property in React Native is used to specify the direction in which the elements of a component are laid out. It has two possible values:


23. flexDirection in React Native

By: Kelly G : 2023-04-08

Description: flexDirection is a CSS property in React Native that is used to define the direction of the main axis of a container. It has two possible values:


24. flex in React Native

By: James : 2023-04-08

Description: In React Native, the flex property is used to specify how an item should grow or shrink to fill the available space. It is commonly used to create responsive layouts that adapt to different screen sizes.


25. expo-secure-store to store sensitive data securely in React Native

By: James : 2023-04-07

Description: expo-secure-store provides an API to securely store sensitive data such as authentication tokens, passwords, and other secrets. This library uses the operating system's secure storage mechanism to store the data.


26. Login Sample in React Native using fetch()

By: Irene : 2023-04-07

Description: Let's say we have a login screen with two inputs, one for the email and one for the password, and a "Sign In" button. When the user clicks the "Sign In" button, we want to send a request to the server to check if the email and password are valid.


27. Expo Build Process for React Native Projects

By: Hazel : 2023-04-07

Description: The Expo build process can be broken down into several steps


28. Advantages of using Expo to develop React Native Projects

By: Hazel : 2023-04-07

Description: Expo provides a development environment that abstracts away the platform-specific implementation details of mobile app development. It provides an abstraction layer that enables developers to write cross-platform code that works seamlessly across both Android and iOS devices


29. React.FC in React - TypeScript

By: Faizal : 2023-04-07

Description: React.FC is a generic type alias in TypeScript used to define a function component in React. It stands for "Function Component" and is a shorthand for defining a function that returns JSX elements.


30. export in React Native - JavaScript

By: Faizal : 2023-04-07

Description: In JavaScript, the export keyword is used to export a function, object, or value from a module so that it can be imported and used in other modules. In React Native, you can use the export keyword to export components, functions, or variables from a JavaScript file.