[Solved] card view shadow effect only top side react native [closed]

install this librery npm i react-native-drop-shadow import this line import DropShadow from “react-native-drop-shadow”; use this view ginv to shasow <DropShadow style={{ shadowColor: “#000”, shadowOffset: { width: 0, height: 0, }, shadowOpacity: 1, shadowRadius: 5, }} > —– Your Contain ————– </DropShadow> solved card view shadow effect only top side react native [closed]

[Solved] I want to make a circle with buttons in react native

Final result: Here is how you can do it: import * as React from ‘react’; import { Text, View, StyleSheet, TouchableOpacity } from ‘react-native’; import Constants from ‘expo-constants’; // You can import from local files import AssetExample from ‘./components/AssetExample’; // or any pure javascript modules available in npm import { Card } from ‘react-native-paper’; export … Read more

[Solved] Removing Search Bar

If you’re asking to remove the url-bar on top and bottom navigation from SFSafariViewController, then it is not possible. The native safari-view-controller is supposed to let the user know that they are on a web-browser with the familiar safari UI. If you really want to just show a webpage with no controlls, just use react-native-webview. … Read more

[Solved] I need of help in found one solution on problem, React,Firebase,For Loop [closed]

You should use the callback in setState if you want to do that because it is async. Please refer to the following link to get more info: https://reactjs.org/docs/react-component.html#setstate Another alternative is to set the state only once instead of doing it multiple times. You don’t need to put all that info in the state only … Read more

[Solved] What is the best approuch to create a single page application React JS? [closed]

You can inject some components in React in other framework or web page but if you build a ReactJS application, it’s basically a single page application. In your application you will have to use a router like: React router : https://github.com/ReactTraining/react-router React redux router : https://github.com/reactjs/react-router-redux There are many other, but those are good for … Read more

[Solved] How can I POST data using API from REACTJS?

It depends on what object does onVote event from Poll component pass. But if it’s vote object, that’s required in postPoll method as second arguement, than: function in onVote event should pass poll.id from this component and vote object from Vote component onVote event itself: onVote={(vote) => handalchange(poll.id, vote)} handalchange should fire postPoll api method … Read more