piscale_chat_flutter 2.6.0 copy "piscale_chat_flutter: ^2.6.0" to clipboard
piscale_chat_flutter: ^2.6.0 copied to clipboard

PiScale Chat official Flutter SDK. Build your own chat experience using Dart and Flutter.

2.6.0 #

  • Search Public group has been removed and added Shared inbox & PCL search.
  • Now user can left group, delete group on your side or both side, disband group.
  • Now support Promotion message type.
  • Support custom message action.
    PSMessages(
        ...
        customActions: [
          PSCustomMessageAction(
            icon: Assets.icons.icSearch.svg(),
            text: 'Custom action',
            positionInMenuOptions: 2,
            onPress: (message) {},
          ),
        ],
    );
  • Added sub-thread.
  • Added new Agent & Guest user types.
  • Minor fixes

2.5.11 #

  • Minor fixes

2.5.10 #

  • Minor fixes

2.5.9 #

  • Minor fixes
  • Changes in PSFloatingChatBot:
    • The text property have been removed. Instead, use the noticeMessage property.

2.5.8 #

  • Refactor code
  • Minor fixes

2.5.7 #

  • Add show/hide message action option

Using PSMessages

    PSMessages(
        ...
        allowedActions: [
            PSMessageAction.copy,
            PSMessageAction.delete,
        ],
    );

Using PSFloatingChatBot

    PSFloatingChatBot(
        ...
        allowedActions: [
            PSMessageAction.copy,
            PSMessageAction.delete,
        ],
    );

2.5.6 #

  • Minor fixes

2.5.5 #

  • Minor fixes

2.5.4 #

  • Minor fixes

2.5.3 #

  • Minor fixes

2.5.2 #

  • Minor fixes

2.5.1 #

  • Minor fixes
  • Improve chatbot

0.0.6 #

  • Update chatbot, fix sticker attachment

0.0.5 #

  • Minor fixes

0.0.4 #

  • Minor fixes

0.0.3 #

  • Minor fixes

0.0.2 #

  • Update doc

0.0.1 #

  • Initial release.