Giter VIP home page Giter VIP logo

Comments (7)

arnnis avatar arnnis commented on August 10, 2024 2

We also have a style prop you can use margins there

toast.show("Toast", {
   style: {
       marginBottom: 50
   }
])

from react-native-toast-notifications.

wata-tiendubai avatar wata-tiendubai commented on August 10, 2024 2

With workaround solution from @lminar, i can't interact to area below the Toast :(
And solution from @arnnis only work for the non-custom toast, not work for custom toast :(
So the best option is using PR from @Lokprakash-babu. 👍
Thanks everyone! Great Toast Lib!!!

from react-native-toast-notifications.

Lokprakash-babu avatar Lokprakash-babu commented on August 10, 2024 1

Raised a PR to fix this issue.

from react-native-toast-notifications.

lminar avatar lminar commented on August 10, 2024 1

I use bottom position of toast and on some screens I have my bottom bar with actions . So for these screens I want to set specify (larger offset) to prevent the bottom bar from being covered by the toast.

from react-native-toast-notifications.

lminar avatar lminar commented on August 10, 2024

Hi, when the fix will be released?

from react-native-toast-notifications.

arnnis avatar arnnis commented on August 10, 2024

You can modify offset globally in ToastProvider, It's by intention not modifiable on show() because it can break the stacking feature (Toasts going over each other).

Do you have a use case where overriding ToastProvider isn't be enough?

from react-native-toast-notifications.

lminar avatar lminar commented on August 10, 2024

@arnnis but I understand the reason why it is only globally.. thanks for your time..
I found workaround: I have custom renderType and the element has margin-bottom value .. so the notification is rendered as I want.. I am ok with the stacking feature isssue that you describe

renderType={{
            custom: (toast: any) => <ToastContent {...toast} />,
            ....

const ToastContent = (props) => {
   render (
       <View marginBottom={'50px'} .....>
             <Text>{props.message}</Text>
             ......
      </View>
     );    
}

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.