-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ScrollView: View is not scrolling #1617
Comments
I am also experiencing exact issue. Any update? |
@npmun const App = () => (
<View style={{ flex: 1 }}>
<Header text="Auth Test" />
<ProviderList />
</View>
); I haven't had a chance to check this test repo again. |
@nomartin |
As I stated in my previous message, My component does seem to work when I move it outside DrawerNavigator. But it does not work when it is part of DrawerNavigator. I created a simple case using the code in test repo to demonstrate this issue... class MyHomeScreen extends React.Component {
} const styles = StyleSheet.create ({ class MyNotificationsScreen extends React.Component {
} export default MyApp = DrawerNavigator({ |
@npmun did you finally found a solution to your problem? |
I suspect this bug is related to Yoga. I'm going to merge the latest from Yoga soon, hopefully that will fix the issue. |
@rozele |
@rozele |
Issue is still there same dependencies like above |
I think there is an issue with DrawerNavigator |
@rozele Did you get a chance to see what could be causing this issue? Please let me know if you think I should be reporting this to react-navigation team. This one is a major blocker for me. |
I think I know what the problem is generated. In react-navigation used package -> react-native-drawer-layout-polyfill -> react-native-drawer-layout |
@qcobber, thanks for the information. that did resolve the issue. However, it introduced a new issue where the overlay does not show up. any thoughts? |
I think #1889 is a duplicate of this one. |
@npmun The problem should be that react-native-windows does not support pointerEvents. Can try react-native-drawer-layout#47, we can use the drawerShown to control the overlay. |
@qcobber thanks for your help. This seems to work. |
@qcobber THX my picker element work now thx a lot ! |
I believe this is related to #1889. Please see suggestion in that issue for workaround. |
Environment
react-native -v
:react-native-cli: 2.0.1
react-native: 0.52.2
npm ls rnpm-plugin-windows
:rnpm-plugin-windows@0.2.8
npm ls react-native-windows
:react-native-windows@0.52.0-rc.0
node -v
:v9.4.0
npm -v
:5.6.0
yarn --version
:N/A
Then, specify:
Steps to Reproduce
Expected Behavior
Expected to click on list and scroll up/down
Actual Behavior
Window does not scroll.
Reproducible Demo
https://github.com/nomartin/rnScrollViewTest
The text was updated successfully, but these errors were encountered: