eveningkid/react-native-popable

`visible={true}` has no effect on Android

aximut opened this issue · 0 comments

I am using the code below from the sandbox example. However, despite visible={true}, the Popable does not show. Am I doing something wrong?

import React from 'react';
import { Text, View, StyleSheet } from 'react-native';
import { Popable } from 'react-native-popable';

export default function App() {
  return (
    <View style={styles.container}>
      <Popable content="See profile" position="bottom" visible={true}>
        <Text style={{ textAlign: 'center'}}>@morning_cafe</Text>
      </Popable>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
  },
});