Skip to content

FastAd-Market/fastpicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fastpicker

This is the official intuitive photo and video picker for FastAd. It supports multiple photos and videos selection on iOS and Android.

FastPicker(
  theme: Theme.of(context),
  selectedAssets: ['asset_id_1', 'asset_id_2'],
  strings: FastPickerStrings(),
);

You can choose to present it as a route

final assets = await Navigator.of(context).push(
      MaterialPageRoute(
        builder: (context) {
          return FastPicker(
            theme: Theme.of(context),
          );
        },
      ),
    );

or use it as you would any widget

child: FastPicker(
  theme: Theme.of(context),
  selectedAssets: [],
  strings: FastPickerStrings(),
  onComplete: (assets) {},
);

Theme colorSchemes

 tertiaryContainer,
 tertiary,
 primaryContainer,
 onPrimaryContainer,
 onPrimary

About

The intuitive photo and video picker for FastAd.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published