flutter_sms 0.0.1 copy "flutter_sms: ^0.0.1" to clipboard
flutter_sms: ^0.0.1 copied to clipboard

outdatedDart 1 only

A Flutter plugin for Sending SMS on Android and iOS.

flutter_sms #

Description #

Flutter Plugin for sending SMS and MMS on Android and iOS. If you send to more than one person it will send as MMS. On the iOS if the number is an iPhone and iMessage is enabled it will send as an iMessage.

How To Use #

You can send multiple ways:

  1. Message and No People
  2. People and No Message
  3. Message and People

This will prefil the correct fields.

Setup #

Android #

Add this to your AndroidManifest.xml

<uses-permission android:name="android.permission.SEND_SMS"/>

iOS #

Good to go!

Example #

Make sure to Install and Import the Package.

import 'package:flutter_sms/flutter_sms.dart';

Create a function for sending messages.

String _message = "";

void _sendSMS(String message, List<String> recipents) async {
    String _result =
        await FlutterSms.sendSMS(message: message, recipients: recipents);
    setState(() => _message = _result);
}

You can quickly send the message with this function.

_sendSMS("Here is a test Message", ["5555543454", "78467477788"])

Screenshots #

iOS SMS Android MMS
alt-text-1 alt-text-2

You can find other screenshots here.

334
likes
0
pub points
97%
popularity

Publisher

verified publisherfluttercommunity.dev

A Flutter plugin for Sending SMS on Android and iOS.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_sms