🚀 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 💪

Task #3523 - Stairs

The structure of the stairs is already ready. All that remains is to specify the width of the steps. The width of the bottom step must be the same as the width of the screen....

August 15, 2020 · 2 min · Coderslang Master

Task #3524 - Navigation Layout

We need to prepare the bottom navigation markup. Inside a View with styles style.navbar, add four Image elements. These images will be our navigation buttons. Each image must be 40px high and 60px wide....

August 15, 2020 · 2 min · Coderslang Master

Task #3525 - Image sizing

Add the image https://learn.coderslang.com/lecture-background-image.jpg inside the top-level View container. The image must be in the middle of its container. Image width must be 80% of screen width. The image should be displayed in its entirety in the original aspect ratio....

August 15, 2020 · 1 min · Coderslang Master

Task #3531 - Forgotten handler

Your colleague forgot to add a text input handler for the field. Use the onChangeText property. The value entered by the user must be stored in the name variable and displayed in the input....

August 15, 2020 · 1 min · Coderslang Master

Task #3532 - Fix handler

An input field has been added to <App /> and it has a method called onChange. But the app doesn’t work. Pass the correct handler to onChange to make it work....

August 15, 2020 · 1 min · Coderslang Master

Task #3533 - Feedback form

The form has already added an email field. Add another message field just below the email address. The field must be multi-line, use the onChange method to handle the input....

August 15, 2020 · 2 min · Coderslang Master

Task #3534 - Click counter

Your colleague left a component incomplete. Let’s complete it. All that’s left to do is add a button. Add a standard button Button, the text on the button should be ‘Click me’....

August 15, 2020 · 1 min · Coderslang Master

Task #3535, Stage #1 - Sign-in form

Now let’s try to create a simple registration form App.js already has a screen title. Just below the text heading, add two text input components. Both input fields must be 60px high and 80% of the screen width....

August 15, 2020 · 2 min · Coderslang Master

Task #3535, Stage #2 - Sign-in form

Now let’s add some logic to each field. The placeholder text of the first field should be Enter email, the second should be Enter password. Placeholder text color must be #254441....

August 15, 2020 · 1 min · Coderslang Master

Task #3535, Stage #3 - Sign-in form

We’ll add a button below the fields, which we’ll style ourselves. To do this, we’ll need to use TouchableOpacity. Opacity should be 0.75 when clicked. Button height must be 60px and width 80% of the screen width....

August 15, 2020 · 1 min · Coderslang Master