ngthailam / flutter_app_short_cut

A Flutter plugin to integrate App shortcuts on Android and IOS
BSD 3-Clause "New" or "Revised" License
3 stars 0 forks source link

Separate input for IOS and Android #9

Closed ngthailam closed 2 years ago

ngthailam commented 2 years ago

Separate ShortcutArg to contains different fields according to OS Example

ShortcutArg(
  AndroidArg androidArg,
  IosArg iosArg
)
AndroidArg(
  String shortLabel,
  String longLabel,
)
IosArg(
  String title,
  String subtitle
)