Piwigo / piwigo-flutter-app

Piwigo mobile application for Android
GNU General Public License v2.0
83 stars 26 forks source link

fix image scale quality and update to latest flutter version #180

Closed xsm1997 closed 1 week ago

xsm1997 commented 4 months ago

This PR fixed the scale quality of photo-view and fixed some dependency problems so that we can update to the latest flutter SDK version.

  1. fix image scale quality: the default filterQuality of photo-view is none, whose algorithm is nearest neighbor up-sampling. Compared with the native Image widget of Android, it is more suitable to use medium filter quality (bilinear interpolation), which has a much favorable looking and is also fast for modern devices.

  2. update dependencies: updated flutter_slidable and extended_text to fix compile errors. Updated rounded_loading_button to a custom fork, as the main repo has not update for a long time. We can use version 3.19.2 for now.

remi-martin commented 1 week ago

Merged with #191