[GH-ISSUE #270] Unknown property overflow-y #186

Open
opened 2026-05-05 11:53:33 -06:00 by gitea-mirror · 1 comment
Owner

Originally created by @giovanniKleinCampigoto on GitHub (Feb 27, 2020).
Original GitHub issue: https://github.com/kusti8/proton-native/issues/270

Describe the bug
After creating a style with the property overflowY, I'm getting an error on my terminal saying that this property is unknown. I'm trying to create a view that has a scrollable area, but could not find it anywhere in the docs or just searching in google.

Maybe a problem with yoga applying styles?

To Reproduce
Include a minimal example of code that causes this bug.

  return (
        <View style={{overflowY: 'scroll'}} key={index}>
          <Text style={processStyle}>{data.name}</Text>
          <TouchableHighlight style={{ backgroundColor: 'white' }} onPress={() => logPID(data.PID)}>
            <Text style={buttonStyle}>Terminate</Text>
          </TouchableHighlight>
        </View>
   );   

Expected behavior
Should be able to scroll the view?

Screenshots
Screenshot from 2020-02-27 07-04-23

Versions:

  • OS: Ubuntu
  • Version 19.04
  • Node version 12.10

Additional context
Add any other context about the problem here.

Originally created by @giovanniKleinCampigoto on GitHub (Feb 27, 2020). Original GitHub issue: https://github.com/kusti8/proton-native/issues/270 **Describe the bug** After creating a style with the property overflowY, I'm getting an error on my terminal saying that this property is unknown. I'm trying to create a view that has a scrollable area, but could not find it anywhere in the docs or just searching in google. Maybe a problem with yoga applying styles? **To Reproduce** Include a minimal example of code that causes this bug. ```jsx return ( <View style={{overflowY: 'scroll'}} key={index}> <Text style={processStyle}>{data.name}</Text> <TouchableHighlight style={{ backgroundColor: 'white' }} onPress={() => logPID(data.PID)}> <Text style={buttonStyle}>Terminate</Text> </TouchableHighlight> </View> ); ``` **Expected behavior** Should be able to scroll the view? **Screenshots** ![Screenshot from 2020-02-27 07-04-23](https://user-images.githubusercontent.com/23245646/75433862-6ae5c700-592f-11ea-945d-b150f7972e98.png) **Versions:** - OS: Ubuntu - Version 19.04 - Node version 12.10 **Additional context** Add any other context about the problem here.
gitea-mirror added the
enhancement
label 2026-05-05 11:53:33 -06:00
Author
Owner

@kusti8 commented on GitHub (Mar 16, 2020):

This isn't currently supported. QScrollArea has to be implemented for this to work: https://doc.qt.io/qt-5/qscrollarea.html

<!-- gh-comment-id:599743817 --> @kusti8 commented on GitHub (Mar 16, 2020): This isn't currently supported. QScrollArea has to be implemented for this to work: https://doc.qt.io/qt-5/qscrollarea.html
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/proton-native#186
No description provided.