Skip to content
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

Scrollbar is not showing in iOS real device #278

Open
gkasireddy202 opened this issue Feb 7, 2023 · 1 comment
Open

Scrollbar is not showing in iOS real device #278

gkasireddy202 opened this issue Feb 7, 2023 · 1 comment

Comments

@gkasireddy202
Copy link

gkasireddy202 commented Feb 7, 2023

Hi,

The scrollbar is not showing on iOS real device and the scroll bar is showing on the iOS simulator.

import React,{Component} from "react";
import { View } from "react-native";
import { Dropdown } from 'react-native-material-dropdown';

class Example extends Component
{
render() {
let data = [{
value: 'Banana',
}, {
value: 'Mango',
}, {
value: 'Pear',
},
{
value: 'orange',
},
{
value: 'apple',
},{
value: 'grapes',
}
];

    return (
      <View style={{flex:1}}>
        <View style={{flex:1}}>

        </View>
        <View style={{flex:1,margin:30}}>
        <Dropdown
    label='Favorite Fruit'
    data={data}
  />
            
        </View>
        <View style={{flex:1}}>
            
        </View>


      </View>
    );
  }

}

export default Example ;

@ismnoiet/react-native-dropdown": "0.0.2",
react-native-cli: 2.0.1
react-native: 0.68.2

iOS Device
Simulator

@gkasireddy202
Copy link
Author

The scrollbar is not showing in a dark mode in ios real device. It is working fine in a light mode in ios real device.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant