8 questions
1
vote
0
answers
37
views
Expand/contract React Native's formSheet on button press
I'm using the formSheet presentation mode to create bottom sheets with Native Stack Navigator and need to put an expand/contract button in the header.
My code currently looks like this:
<Stack....
1
vote
0
answers
75
views
react-navigation error: viewmanagerresolver returned null for either RNSScreenContentWrapper or RCTRNSScreenContentWrapper
I am Trying to Add Navigation in My React Native App and I am Getting this Error?
This is My Navigation Code:-
const Stack = createNativeStackNavigator()
function App(): React.JSX.Element {
// ...
6
votes
1
answer
9k
views
react-navigation/native error: viewmanagerresolver returned null for either RNSScreenContentWrapper or RCTRNSScreenContentWrapper
In a fresh created react native project, bootstrapped using @react-native-community/cli, I installed @react-navigation/native-stack guided by youtube video.
I ended up with code:
import {...
1
vote
1
answer
194
views
Top Tabs Navigator tabBar floats below Android's navigation bar
I am using Material Top Tabs Navigator from React Navigation, as well as a custom tabBar component as shown in example in the official docs.
At the same time, I am using Native Stack Navigator. The ...