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

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

Now let’s add the text ‘Login’ inside the button. The font weight should be bold, the font size should be 20. This task is part of the Full-Stack JavaScript Course....

August 15, 2020 Â· 1 min Â· Coderslang Master

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

Now is the time to add the onPress handler to the button. When you click on it, the component should change. Instead of a title and button fields, two text components should appear....

August 15, 2020 Â· 1 min Â· Coderslang Master

Task #3541 - Fix view

The text of the App.js component will overlap the status bar on iOS. You need to fix this, the correct view was used. All styles and text should remain unchanged....

August 15, 2020 Â· 1 min Â· Coderslang Master

Task #3542 - Scroll throw poems

The applications with Bayron’s poems are almost ready. All that remains is to display the poems. To display in verse, call the renderPoems method. The verses should be displayed in a ScrollView just below the header container....

August 15, 2020 Â· 3 min Â· Coderslang Master

Task #3543 - FlatList

In App.js, you need to render the data array to the FlatList. Each list item must be a block with the style styles.item. Inside this block, the text corresponding to the list item should be displayed....

August 15, 2020 Â· 2 min Â· Coderslang Master

Task #3544, Stage #1 - Menu app

New mini project - development of a menu application. Let’s get to work! We’ll use SectionList because the menu has different sections. You can see the prepared data in the file data....

August 15, 2020 Â· 2 min Â· Coderslang Master

Task #3544, Stage #2 - Menu app

Let’s work out the renderSectionHeader method. It should return the Text element. Display the section’s menuSection property as inner text. Hint: the renderSectionHeader argument will be an object with a section field, the value of which will be an element of the sectionsData array....

August 15, 2020 Â· 1 min Â· Coderslang Master

Task #3544, Stage #3 - Menu app

Let’s work on the renderItem method. It should return the View element. Element vertical margins should be 10 and horizontal paddings 30. This container must have two children: the first is View and the second is Text....

August 15, 2020 Â· 1 min Â· Coderslang Master

Task #3544, Stage #4 - Menu app

And so, let’s work through the first child of the container returned from renderItem. We also have this View. Items in it will be displayed in a row, to do this, set the flexDirection property to row....

August 15, 2020 Â· 1 min Â· Coderslang Master

Task #3544, Stage #5 - Menu app

Let’s work on the second child of the container returned from renderItem. We have this Text. Inside this element, the value of the description field of the list item should be displayed....

August 15, 2020 Â· 1 min Â· Coderslang Master