RNBlurModalView icon indicating copy to clipboard operation
RNBlurModalView copied to clipboard

Long Text Issue

Open bayfatih2000 opened this issue 11 years ago • 6 comments

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

bayfatih2000 avatar Jun 03 '13 07:06 bayfatih2000

Can you provide a character count or screen shot? I hadn't really planned on supporting a lot of text.

rnystrom avatar Jun 05 '13 00:06 rnystrom

shot 1 Didi you mean something like that ? I think a solution can be raising message width view. Better if width can be dynamic.

ansani avatar Jun 07 '13 07:06 ansani

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.

rnystrom avatar Jun 07 '13 14:06 rnystrom

screen shot is a good example.

bayfatih2000 avatar Jun 08 '13 15:06 bayfatih2000

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

timstudt avatar Jun 29 '13 10:06 timstudt

this issue still exist :)

AhmedAskar avatar Jan 02 '14 11:01 AhmedAskar