Skip to content

visible={true} has no effect on Android #32

Description

@aximut

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',
  },
});

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions