erluxman / pdf_flutter

Flutter Widget to display PDF
Apache License 2.0
99 stars 53 forks source link

How to set the height to fill the remaining space? #20

Closed zfc0812 closed 3 years ago

zfc0812 commented 3 years ago

I have a button on my app and I would like to the pdf viewer to fill the remaining space. Because I have another button widget, so I can't use double.infinity for the height. I tried to wrapped the PDF widget in Extended, but it does not make it to fill the remaining height.

devj3ns commented 3 years ago

For me this works:

var size = MediaQuery.of(context).size;

PDF.network(
        url,
        height: size.height,
        width: size.width,
      );

It's not ideal but it works. Hopefully some day this plugin supports being wrapped in an Expanded Widget.

erluxman commented 3 years ago

Thanks for response @devj3ns