Giter Site home page Giter Site logo

Comments (4)

bhushan-patil-official avatar bhushan-patil-official commented on May 26, 2024 4

If anyone still having a problem after @arnnis workaround, some more information on it.

import Toast from "react-native-fast-toast";

export Component = () => {
    const toastRef = useRef();
    useEffect(() => {
       toastRef?.current?.show("Hello world") // that's how you should call the toast
    }, []);
    return (
        <Modal>
            .....
            <Toast ref={toastRef} />
        </Modal>
    );
}

from react-native-toast-notifications.

carrie503 avatar carrie503 commented on May 26, 2024 4

If you want to use useToast() like me (I have too many custom types and I don't want to use ref)

I suggest you can do like this:

export function CustomToastProvider(props: Props): JSX.Element {
  const { children } = props;

  return (
    <ToastProvider
      offsetTop={TOAST_OFFSET_TOP}
      placement={TOAST_PLACEMENT}
      duration={TOAST_DURATION}
      renderType={RENDER_TYPE}
    >
      {children}
    </ToastProvider>
  );
}
interface Props {
  children: React.ReactNode;
}

export default function ModalScreenWrapper(props: Props): JSX.Element {
  const { children } = props;

  return <CustomToastProvider>{children}</CustomToastProvider>;
}
export default function ModalScreen(): JSX.Element {
  return (
    <ModalScreenWrapper>
      <ContentScreen />
    </ModalScreenWrapper>
  );
}
function NewsContentScreen(): JSX.Element {
    const toast = useToast();
    return (
      <Button onPress={() => toast.show('hi')} />
    );
}

Hope this comment is helpful ❤️

from react-native-toast-notifications.

arnnis avatar arnnis commented on May 26, 2024 2

The Modal component is a native view that sits on top of the rest of react-native application. The only way to put something above it is to put something in the modal itself, or alternately to use a JS only implementation of a Modal.

As a workaround you can put toast inside modal like this:

import Toast from "react-native-fast-toast";

export Component = () => {
    const toastRef = useRef();
    return (
        <Modal>
            .....
            <Toast ref={toastRef} />
        </Modal>

}

from react-native-toast-notifications.

Jamal-ReachFirst avatar Jamal-ReachFirst commented on May 26, 2024

I am using useToast() and don't want to create another ref.

from react-native-toast-notifications.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.