buttonAll static method

Widget buttonAll({
  1. dynamic likeModel,
  2. String? likeField,
  3. dynamic savedItemModel,
  4. String? shareSubject,
  5. String? shareText,
  6. String? shareUrl,
  7. List<String>? shareFiles,
  8. WidgetStyleRF? style,
})

Implementation

static Widget buttonAll({
  dynamic likeModel,
  String? likeField,
  dynamic savedItemModel,
  String? shareSubject,
  String? shareText,
  String? shareUrl,
  List<String>? shareFiles,
  WidgetStyleRF? style,
}) {
  //style = style ?? WidgetStyleRF(padding: EdgeInsets.all(8.0));
  return Row(
    children: [
      SocialRF.buttonLike(
          model: likeModel, likeField: likeField!, style: style!),
      GapRF(10),
      SocialRF.buttonSave(savedShareModel: savedItemModel, style: style),
      GapRF(10),
      SocialRF.buttonShare(
          subject: shareSubject!,
          text: shareText!,
          url: shareUrl!,
          //files:
          style: style),
    ],
  );
}