Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 27, 2020 10:21 pm

Common React Native App Layouts: Login Page

In this series, you'll learn how to use React Native to create page layouts commonly used in mobile apps. The layouts you'll be creating won't be functional—instead, the main focus of this series is to get your hands dirty in laying out content in your React Native apps.

If you're new to laying out React Native apps or styling in general, check out our tutorial on layouts in React Native:

To follow this series, I challenge you to try recreating each screen by yourself first before reading my step-by-step instructions in the tutorial. You won't really benefit much from this tutorial just by reading it! Try first before looking up the answers here. If you succeed in making it look like the original screen, compare your implementation to mine. Then decide for yourself which one is better!

In this first part of the series, you'll create the following login page:


react native login

Getting Started

In this tutorial, we will use the Expo CLI. Expo is a set of tools and services built around React Native and native platforms that help you develop, build, deploy, and quickly iterate on iOS, Android, and web apps from the same JavaScript or TypeScript codebase. 

Expo is the easiest and fastest way to build React Native apps. The official Expo get started guide contains detailed instructions on how to download and configure Expo CLI for the major operating systems.

Create a new project

You will be prompted to choose the type of project to initialize. Choose Managed workflow and blank. Wait a few seconds for Expo to install the project files and change the directory into the new project.

The project structure should look like this. 

Open App.js to start working on your application. The starting code App.js should look like this:

On the second line of code, we import React to use JSX, Then we import the StyleSheetText, and View components from React Native.

Next is the App function, which returns a view component and a text component as a child of that. <View> is an essential component in React Native and can serve many purposes, such as styling different elements, wrapping elements, or nesting elements. The <View>  element is equivalent to <div> in HTML web development. As you can see, the View component has a property, style = {styles.container}which is used to apply styles to the view

The <Text> component allows us to render text. 

Layouts With Flexbox

Flexbox is a critical technique in React Native. Flexbox is designed to provide a consistent layout on different screen sizes. Flexbox works the same way in React Native as it does in CSS on the web, with a few exceptions. (You can learn about CSS Flexbox here.) The defaults are different, though, with the flex direction defaulting to column instead of row and the flex parameter only supporting a single number.

Flex defines how items fill over the available space along the main axis. The available space is divided according to each element's flex property.

We define the flexbox layout at the bottom of the file in the styles constant. The container has the following styles



  • flex: 1—This defines how elements will fill over space. Space is usually divided according to each element's flex property.


  • justifyContent: "center"—This aligns children of a container in the center of the container's main axis


  • alignItems: "center" —This aligns children of a container in the center of the container's cross axis.

User Interface and Common Components

A typical React Native will use the following components.


























Viewa container for other components
Textdisplays text
Imagedisplays images
Stylesheetprovides a way of styling elements 
TextInputan input field
Buttona clickable buttons

Adding an Image

Images in React Native are placed in the assets folder and referenced like this:

Let us add an image in the assets folder. This will be used as the logo image. Start by removing the text component it with the logo image. Don't forget to import the Image component component at the top.

Styling in React Native 

Elements in react Native are styled using JavaScript. All the React Native elements accept a prop named style, which accepts an object with style names and values. These style names and values are similar to those used in CSS,  except the names are written using camel casing. For example, React Native uses backgroundColor for the CSS property background-color.

Add the following styles to the image.

Here we add a marginBottom: 40 style to make some space between the image and the text inputs.

Next, add text input fields for the email and password. First, add state properties to hold the email and password. State in React Native is used on components that change over time. For example, the information in the TextInput keeps changing as users input their information. The initial state of the email and password will be empty.

Start by importing useState, as shown below. The useState function will allow our functional components to be stateful.

Then initialize the state by adding the following code in the App function.

We use a View to wrap each text input for easy styling. Add this code below the image.

The setState method will update the state object with whatever information the user has entered. secureTextEntry is set to true to hide the text entered in the email text input for security purposes. 

Add the following styles to the inputView and textInput props.

Add the Forgot Password? button below the text input fields. We'll use  a TouchableOpacity button, which changes opacity when pressed.

Next, add the following styles for the forgot password button.

Finally, add the Login button. Add the following code below the forgot password button.

Add the styles for the login button.

Here we add a border radius style to make the button circular and a marginTop: 40  property to make a space between the two buttons. We also set a  custom height and width. 

The Final Login Screen Code

The final code for App.js should look like this:

And here is the final look of the app:

react native login

Conclusion

In this tutorial, you've successfully created a beautiful login page using your Flexbox knowledge.  You have also learned how to use the Expo CLI, an easy way to build and test React Native Apps.

In the next tutorial in this series, you'll learn how to create a calendar screen. In the meantime, check out some of our other tutorials on React Native and Flexbox.


Original Link: https://code.tutsplus.com/tutorials/common-react-native-app-layouts-login-page--cms-27639

Share this article:    Share on Facebook
View Full Article

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code