All Questions
20 questions
0
votes
1
answer
50
views
How to Make Bottom Tab Bar Corners Transparent in React Native?
I am developing an app using React Native, and I want to create a bottom tab bar with rounded corners. While I managed to round the corners using borderTopEndRadius and borderTopLeftRadius, the ...
1
vote
0
answers
152
views
React native inverted border radius
I was looking for solutions to this for a while now, but I found no answer to this. Image will show the case better.
Above is the piece of design I have. This is a bottom menu, but on the top of what ...
0
votes
1
answer
34
views
KeyboardAvoidingView makes a messy the flexbox
I have the following code:
return (
<KeyboardAvoidingView style={{ flex: 1 }} behavior="padding" enabled>
<View style={style.flex1}>
<View style={style.imageContainer}&...
0
votes
1
answer
228
views
What is the difference between borderBottomStartRadius and borderBottomLeftRadius in react native?
As the title states it would be better if someone can explain the difference between these two, since both of these props the same thing to an element.
I tried googling but i did not get any leads.
0
votes
2
answers
2k
views
Using % for width not working React Native
I am coding a project using expo react native and I made a horizontal scrollview for images. The images are styled correctly when pixels are used: <Image code... style={{width: 350}}/> However ...
2
votes
2
answers
10k
views
How to make a view height fit the content inside in react native?
I'm building a mobile chat application and I came across this problem where I display the messages as text inside of a view, but apparently I can't make the messages appear in a certain height where ...
1
vote
1
answer
3k
views
How to align button to stay at the bottom of page and avoid keyboard in React Native?
How can I keep the button at the absolute bottom of the viewable screen, while also avoiding the keyboard?
Right now the button is jumping up the screen when I open the keyboard.
I have tried using ...
2
votes
1
answer
2k
views
React Native Scrollview height not changing to fit children elements
I have gone through a lot of posts here on StackOverflow and elsewhere on the web, but could not find a similar issue.
I am working on a React Native app that has a ScrollView, but the problem is that ...
0
votes
1
answer
178
views
How can I style bottom section of screen In REACT NATIVE where minimize, home and back buttons are placed?
I want to style the section in the image above, of my App to look exactly like the rest of the screen of my App but couldn't find how to do that, can anyone help me out, please?
e.g: giving it ...
3
votes
4
answers
2k
views
textDecoration: line-through not working in React Native styled component
I created a styled component
const StrikeThrough = styled(StandardText)`
textDecoration: line-through;
`;
and called it with children, similar to <StrikeThrough>Write text here</...
0
votes
2
answers
1k
views
ReactNative Android app crash. Error while updating property padding in shadow node of type: RCTView
This is the error I get
Few things are bugging me here.
This crash is happening at random times, in development, and when the app is built for production.
I found out that problem might be because ...
0
votes
2
answers
46
views
Overwrite a button backgroundColor in react-native
I am new on react-native and I was wondering if there is an easy way to overwrite a backgroundColor in the button. I did try in many ways but with no luck.
Basically I am trying to replace the blue ...
0
votes
2
answers
68
views
I need a <Text> on the bottom of my screen but all the 'solutions' won't work for me |Mobile App|
So the problem is; I want some text on the bottom of my screen. I found a lot of solutions that were working in their case but those won't work in my case and I am not sure why.
Here is a picture of ...
1
vote
1
answer
611
views
How to draw hexagonal shape image in react Native
I am trying to display a hexagon shaped image with white borders.
The problem is, I can't make the view that contains the image hexagonal.
Has anyone ever needed to display such an image?
4
votes
0
answers
104
views
Creating a layout with View Style React Native
How do I create a layout in StyleSheet and make the 4 trapeziums clickable together with the square at the center?