LeGoffMael / insta_assets_picker

An image (and videos) picker similar with Instagram, supports multi picking, crop and aspect ratio.
https://pub.dev/packages/insta_assets_picker
MIT License
79 stars 34 forks source link

Remove the possibility to square an image, so the aspect ratio only is 4/5 #10

Closed dadyownes15 closed 1 year ago

dadyownes15 commented 1 year ago

How do i remove the button on on image picker screen, that allows users to change their aspect ratio of their images to 1/1?

Screen Shot 2023-05-09 at 9 46 20 AM
LeGoffMael commented 1 year ago

You can set the list of available aspect ratios since the latest 1.5.0.

InstaAssetPicker.pickAssets(
  context,
  title: 'Select images',
  cropDelegate: InstaAssetCropDelegate(cropRatios: [1]), // can add any ratio you want
  onCompleted: (cropStream) {},
),