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....
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....
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....
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....
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....
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....
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,...
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....
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....
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....
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....