?> In order to start using multi_image_picker you must have the Dart SDK installed on your machine.
The first thing we need to do is add the multi_image_picker package to our pubspec.yaml as a dependency.
!> This plugin was migrated from using the deprecated Android Support Library to AndroidX. If your project was migrated to use it as well you should install version 4.X.X of the plugin. If you are using the old project structure please use version 2.4.11
dependencies:
multi_image_picker: ^4.6.0Next we need to install the plugin.
!> Make sure to run the following command from the same directory as your pubspec.yaml file.
- Run
flutter packages get
Now that we have successfully installed multi_image_picker, we can create our main.dart and import multi_image_picker.
import 'package:multi_image_picker/multi_image_picker.dart';