Let鈥檚 add the component src/components/Buttons/RadialButton.
This component must return a TouchableOpacity element that wraps the Icon component.
The onPress property must be forwarded to TouchableOpacity.
Pass the following properties to the Icon component: size - 35, color - colors....
Let鈥檚 add the src/components/NavigationHeader component. This component should return the StatusBar element.
NavigationHeader should have default properties: barStyle: dark, backgroundColor: transparent.
The StatusBar must have animated and translucent properties equal to true....
Let鈥檚 work on the Lists screen. It should return a snippet with two SafeAreaView elements.
The first one should have styles: flex: 1, backgroundColor - colors.blue.
Second: flex: 0, backgroundColor: colors....
Let鈥檚 connect redux and navigation to our application
To do this, import the src/components/Navigator component and the Provider component from react-redux.
Now, after the fonts are loaded in the <App /> component, the navigator wrapped by the provider should be returned....
Let鈥檚 add the remaining screens to the navigator. There should be 4 of them in total.
Let鈥檚 add a screen with the Words component and the name WORDS_SCREEN.
And add two more screens with the AddingListOrWord component....
Implement the binarySearch function.
It should accept a sorted array and a number.
It should return the position of the number in the array or -1 if it鈥檚 not found....
Implement the function getBit(n, pos).
It should return the value of the bit found on position pos of the number n.
The position of the rightmost bit is 0.
This task is part of the Full-Stack JavaScript Course...
Implement the sort function which should sort the array.
Sort order should be ascending.
You can鈥檛 use any third party modules or built in Array functions.
This task is part of the Full-Stack JavaScript Course...
Implement the function isArrayIdentical in helper.js
It should return true if two arrays have the same elements. The order of the elements doesn鈥檛 matter.
Arrays will only have plain fields (strings, numbers or booleans)...
Implement the fastSort function which should sort the array.
Sort order should be ascending.
The time complexity should be better than O(n^2), preferably O(n*log(n)).
You can鈥檛 use any third party modules or built in Array functions....