Giter VIP home page Giter VIP logo

Comments (6)

felipe-bergamaschi avatar felipe-bergamaschi commented on July 20, 2024 1

@wallacerenan @rbpolim

You need to create a _layout file in the root of your project and add the component to it.
example:

// _layout.tsx
import { Stack } from 'expo-router';
import Toast from 'react-native-toast-message';

export default function Layout() {
 return (
   <>
     <Stack />
     
     <Toast />
   </>
 )
}

from react-native-toast-message.

felipe-bergamaschi avatar felipe-bergamaschi commented on July 20, 2024 1

@ShaneKeney In the documentation, it states that the Toast should be the last component of your application, as in the quote below.

Render the Toast component in your app's entry file, as the LAST CHILD in the View hierarchy (along with any other components that might be rendered there):

// app/_layout.tsx
import Toast from 'react-native-toast-message';
import { Stack } from 'expo-router';

export default function Layout(props) {
  return (
    <>
      <Stack>
        {/* ... */}
      </Stack>
      
      <Toast />
    </>
  );
}

I had tested this previously, and indeed, when the Toast component is above, this issue occurs. However, when it is the last component, the operation is normal.

from react-native-toast-message.

rbpolim avatar rbpolim commented on July 20, 2024

Same here

How can I wrap the Toast component like a provider?

from react-native-toast-message.

ShaneKeney avatar ShaneKeney commented on July 20, 2024

@felipe-bergamaschi I am doing the above in my root _layout.tsx. However, one behavior I am seeing that wasn't an issue before is the Toast message when triggered is showing behind screen modals instead of showing above them.

e.g. of a nested navigator _layout.tsx:

    <Stack screenOptions={{ headerShown: false, gestureEnabled: false }}>
      <Stack.Screen name="ideaMachine" />
      <Stack.Screen name="editName" options={{ presentation: 'modal' }} />
      <Stack.Screen name="editMood" options={{ presentation: 'modal' }} />
      <Stack.Screen name="editInterest" options={{ presentation: 'modal' }} />
      <Stack.Screen name="ideaDetails" options={{ presentation: 'modal' }} />
      <Stack.Screen name="editGroup" options={{ presentation: 'modal' }} />
      <Stack.Screen name="addPeople" options={{ presentation: 'modal', gestureEnabled: true }} />
      <Stack.Screen name="addGroup" options={{ presentation: 'modal' }} />
      <Stack.Screen name="addGroupPeople" options={{ presentation: 'modal' }} />
      <Stack.Screen name="addGroupPeopleQR" options={{ presentation: 'modal' }} />
    </Stack>

ideaMachine in the Stack Navigator is a Tab Navigator with 3 Tabs.

Have you seen this issue at all or maybe I'm missing something here?

from react-native-toast-message.

ShaneKeney avatar ShaneKeney commented on July 20, 2024

@felipe-bergamaschi Cool and thank you. I'll test that out. I did find a workaround from scanning the changelog where I can put the same Toast component in the Modal Screen Component itself and everything works as expected. I'd much rather keep things dry and only need to specify it once.

from react-native-toast-message.

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.