Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

5 E/FrameEvents(16866): updateAcquireFence: Did not find frame. [log] java.io.FileNotFoundException: No content provider: "https://firebasestorage.googleapis.com/..." #254

Closed
therasuldev opened this issue Aug 13, 2023 · 0 comments

Comments

@therasuldev
Copy link

FutureBuilder(
future: book.url,
builder: (ctx, snapshot) {
if (snapshot.hasData) {
return SizedBox(
height: MediaQuery.of(context).size.width * .5,
child: PDFView(
filePath:snapshot.data!,
defaultPage: 1,
enableSwipe: true,
swipeHorizontal: true,
autoSpacing: false,
pageFling: false,
onRender: (pages) {
log(pages.toString());
},
onError: (error) {
log(error.toString());
},
),
);
} else if (snapshot.connectionState == ConnectionState.waiting) {
return const CircularProgressIndicator();
} else {
return const SizedBox.shrink();
}
},
),

@therasuldev therasuldev changed the title 5 E/FrameEvents(16866): updateAcquireFence: Did not find frame. [log] java.io.FileNotFoundException: No content provider: https://firebasestorage.googleapis.com/v0/b/interview-questio.appspot.com/o/flutter%2FBeginning%20Flutter%203.0%20with%20Dart.pdf?alt=media&token=2884d2e5-ee57-4728-a2c3-9520d1013d44 5 E/FrameEvents(16866): updateAcquireFence: Did not find frame. [log] java.io.FileNotFoundException: No content provider: "https://firebasestorage.googleapis.com/..." Aug 13, 2023
@therasuldev therasuldev closed this as not planned Won't fix, can't repro, duplicate, stale Aug 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant