馃殌 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 馃挭

Task #3573 - Alert

A button has already been added to the <App /> component. You have to modify the click handler. When you click on the button, an Alert should appear without a title....

August 15, 2020 路 1 min 路 Coderslang Master

Task #3574 - Alert with buttons

When you click on the Confirm agreement border, an Alert should appear with the Please confirm title. Alert should show a message - Are you agree? And two buttons - Sure and No, no, no....

August 15, 2020 路 2 min 路 Coderslang Master

Task #3575 - Drawer navigation

Let鈥檚 practice adding Drawer navigation. The App component must be a navigation container with a Drawer navigator. You need to add three screens named Asia, Europe, NorthAmerica - in that order....

August 15, 2020 路 2 min 路 Coderslang Master

Task #3801, Stage #1 - Vocabulary Builder app

We will now jointly develop a full-fledged Vocabulary Builder mobile app. The application will allow you to create your own dictionary of English words. We use React Native, RN Navigation, Redux, redux-thunk, AsyncStorage in the application....

August 15, 2020 路 3 min 路 Coderslang Master

Task #3801, Stage #10 - Vocabulary Builder app

Let鈥檚 add the src/components/Buttons/IconButton component. This component must return the TouchableOpacity element. The styles for this component must be an array of styles. The first element of the array must contain a padding style of 3....

August 15, 2020 路 1 min 路 Coderslang Master

Task #3801, Stage #11 - Vocabulary Builder app

Let鈥檚 add the src/components/Input component. This component must be returned by the View element. The styles for this component must be an array of styles. The first element of the array must contain the following styles: borderRadius - 4, height - 35, flex - 1,...

August 15, 2020 路 1 min 路 Coderslang Master

Task #3801, Stage #12 - Vocabulary Builder app

Let鈥檚 add the src/components/Buttons/Button component. This component should return the TouchableOpacity element with styles: borderRadius - 4, height - 35, width - 120, justifyContent - center, alignItems - center, backgroundColor-colors.blue3, shadowOpacity-0....

August 15, 2020 路 1 min 路 Coderslang Master

Task #3801, Stage #13 - Vocabulary Builder app

Now let鈥檚 add a component that will be an element of the Lists. Let鈥檚 add it to the src/containers/Lists/List folder. First, let鈥檚 add the getWordsCount helper method in the src/containers/Lists/List/helpers.js file....

August 15, 2020 路 2 min 路 Coderslang Master

Task #3801, Stage #14 - Vocabulary Builder app

The FlatList element of the Lists container must have the data and renderItem properties defined to display the list items. The data property must equal the lists property of the container....

August 15, 2020 路 1 min 路 Coderslang Master

Task #3801, Stage #15 - Vocabulary Builder app

Let鈥檚 connect the List component to the repository. You only need to transfer the WORDS field to the List component. Only when passing it to a component should it be renamed to words....

August 15, 2020 路 1 min 路 Coderslang Master