Good day SO.
I want to add a multiple-line toast message in React Native APP. However, it is always being cut off on line 2.
Here is my code:
let errString = errors.join("\n");
alerts(errString);
const alerts = (data) => {
Toast.show({
topOffset: 100,
type: "error",
text1: "ERROR",
text2: `${data}`,
visibilityTime: 500,
});
};
On the message it will cut off like this:
A long first message
Another long second message...
My 3rd message onwards is not displayed.