RNBlurModalView
RNBlurModalView copied to clipboard
Long Text Issue
My explanation texts can be very long. At this time, the popup window does not exceed in the the screen. How can I solve this problem?
Thanks
Can you provide a character count or screen shot? I hadn't really planned on supporting a lot of text.
Didi you mean something like that ? I think a solution can be raising message width view. Better if width can be dynamic.
That's a good idea. I'll try to get around to this as I'm working on a significant update to this project for an app of mine. Good call.
screen shot is a good example.
You can limit max size height in -autoHeight, e.g. to 200
- (void)autoHeight { CGRect frame = self.frame;
- CGSize maxSize = CGSizeMake(frame.size.width, 9999);
- CGSize maxSize = CGSizeMake(frame.size.width, 200);
embedding modal view in a scroll view could be nice to
this issue still exist :)