flutter_full_pdf_viewer icon indicating copy to clipboard operation
flutter_full_pdf_viewer copied to clipboard

Missing some key pdf features

Open lastlink opened this issue 5 years ago • 9 comments

  • search document
  • get, set page
  • view outline, bookmarks

performance really good now, but these are key features to a pdf viewer

lastlink avatar Dec 14 '18 21:12 lastlink

Hyperlinks such as those on content pages do not work as well

jloh02 avatar Dec 23 '18 09:12 jloh02

I would love to see these options too

l-k22 avatar Jan 10 '19 12:01 l-k22

Hyperlinks such as those on content pages do not work as well

I must be taking crazy pills, I thought this was working. Has a recent Flutter update broken it or was it never working??

l-k22 avatar Jan 15 '19 09:01 l-k22

Hey guys im sorry to answer that lately had a surgery and I'm still not in the best mood. I will work on it when im good again. Sorry...

albo1337 avatar Jan 15 '19 13:01 albo1337

Sorry to hear that. Get well soon

l-k22 avatar Jan 15 '19 14:01 l-k22

Hyperlinks such as those on content pages do not work as well

I just downgraded to 1.0.1 and it's working, not sure what's changed in the new version

l-k22 avatar Jan 15 '19 14:01 l-k22

Hey @l-k22 is this related to https://github.com/albo1337/flutter_full_pdf_viewer/issues/12 ?

albo1337 avatar Feb 27 '19 12:02 albo1337

Hey @l-k22 is this related to #12 ?

Yes it is, but now neither imports seem to work, not sure if this an Android X compatibility issue

l-k22 avatar Feb 27 '19 12:02 l-k22

@l-k22 I don't know if hyperlinks ever worked. Apparently you have to add support for them.

e.g. ios

- (BOOL)_webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
        if (navigationType == UIWebViewNavigationTypeLinkClicked ) {
            UIApplication *application = [UIApplication sharedApplication];
            [application openURL:[request URL] options:@{} completionHandler:nil];
            return NO;
        }

        return YES;
}

I couldn't quite get this to work though.

lastlink avatar Apr 10 '19 03:04 lastlink