ui
ui copied to clipboard
Customizable set of components for React Native applications
I just founded this great project and my first thought was "oh, now all my toubles with ui in RN will end!". But then I saw that last activity of...
This is my code: ``` refreshProductsList = () => { this.getProductsListData() } getProductsListData = async () => { this.setState({ isLoading: true, }) let response = await fetch(...) let responseJson =...
I get an error if I add "@shoutem/ui": "^0.23.4" to package.josn/dependencies . it will hangs at yarn install. if remove "@shoutem/ui": "^0.23.4" is worked
Reading through the DropDownMenu.js code I found that the style props is been removed explicitly https://github.com/shoutem/ui/blob/develop/components/DropDownMenu/DropDownMenu.js >> Line no 83. I don't want to go theme route as it is...
if (Platform.OS === 'android') { StatusBar.setBackgroundColor('rgba(0, 0, 0, 0.2)'); } https://github.com/shoutem/ui/blob/master/components/NavigationBar/NavigationBar.js#L34
The NavigationBar component is using a fixed height value of 70 (which is quite bigger than it should be), instead of `NAVIGATION_BAR_HEIGHT`. Here's the line in question: https://github.com/shoutem/ui/blob/develop/theme.js#L1396
I have initialized the React Native Project and installed Shoutem UI exactly like the instruction ``` $ react-native init HelloWorld && cd HelloWorld $ npm install --save @shoutem/ui $ react-native...
I get the following error when running ```react-native run-android```: ``` /Users/[user]/Documents/github/[my-app]/node_modules/react-native-photo-view/android/src/main/java/com/reactnative/photoview/ImageEvent.java:37: error: no suitable constructor found for Event(int) super(viewId); ^ constructor Event.Event() is not applicable (actual and formal argument lists...
Any plans to support react-native-web in the future?
I'm trying to create a GridView by combining a ListView with GridRow's. As a container for it I have a lineargradient control from react-native-linear-gradient like here: ``` ``` As row...