All Projects → fluttercommunity → Flutter_sms

fluttercommunity / Flutter_sms

Licence: mit
A Flutter plugin to Send SMS and MMS on iOS and Android. If iMessage is enabled it will send as iMessage on iOS. This plugin must be tested on a real device on iOS. Maintainer: @rodydavis

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Flutter sms

Stayfit
📱 🏃 🍎 Fitness application that’s used to keep track of your physical fitness data, daily calorie count, invite friends to work out together and ultimately get healthy.
Stars: ✭ 90 (-26.83%)
Mutual labels:  sms
Hpomb
HPomb closed-source project for SMS , Call & Mail bombing available for Window , Linux , MacOS And Android( Termux )
Stars: ✭ 102 (-17.07%)
Mutual labels:  sms
Cat Facts
Daily cat facts! 🐱
Stars: ✭ 110 (-10.57%)
Mutual labels:  sms
Faxserver
Send and Receive Faxes Using The Twilio Programmable Fax API.
Stars: ✭ 92 (-25.2%)
Mutual labels:  sms
30 Days Of Python 3.6
This is a soon-to-be archived project version of 30 Days of Python. The original tutorial still works but we have an updated version in the works right now.
Stars: ✭ 98 (-20.33%)
Mutual labels:  sms
React Native Sms Verifycode
A React Native component for filling in SMS verification codes or passwords, for android and iOS
Stars: ✭ 107 (-13.01%)
Mutual labels:  sms
Bomberthon
Best Bombing Tool with WhatsApp, Instagram, SMS bomber
Stars: ✭ 84 (-31.71%)
Mutual labels:  sms
Sms Wp To Android
📱 Converts .msg (WP) file to standard XML (Android)
Stars: ✭ 114 (-7.32%)
Mutual labels:  sms
Pulse Sms Web
The official web app for Pulse SMS - built on Vue.js.
Stars: ✭ 101 (-17.89%)
Mutual labels:  sms
Pygsm
Send and receive SMS via a GSM modem in Python
Stars: ✭ 110 (-10.57%)
Mutual labels:  sms
Smart sms
The easiest way to integrate SMS service in China
Stars: ✭ 92 (-25.2%)
Mutual labels:  sms
Spamsms
SPAM SMS (-UPDATE 2020!-)
Stars: ✭ 94 (-23.58%)
Mutual labels:  sms
Pulse Sms Ios
The official iOS app for Pulse SMS.
Stars: ✭ 108 (-12.2%)
Mutual labels:  sms
Sms Bomber
A very, very simple sms bomber written in python and now java. You can adjust the amount of texts sent, and the interval at which they are sent (if you want any). For educational purposes only.
Stars: ✭ 91 (-26.02%)
Mutual labels:  sms
Python Smpplib
SMPP library for Python
Stars: ✭ 112 (-8.94%)
Mutual labels:  sms
Tbomb
This is a SMS And Call Bomber For Linux And Termux
Stars: ✭ 1,287 (+946.34%)
Mutual labels:  sms
Django Notifs
Modular Notifications (InApp, Email, SMS, CustomBackend etc) for Django
Stars: ✭ 105 (-14.63%)
Mutual labels:  sms
Gearsystem
Sega Master System / Game Gear / SG-1000 emulator for iOS, macOS, Raspberry Pi, Windows, Linux and RetroArch.
Stars: ✭ 114 (-7.32%)
Mutual labels:  sms
Bomb3r
SMS bomb3r | Made with ❤ in IN.
Stars: ✭ 113 (-8.13%)
Mutual labels:  sms
Raspisms
RaspiSMS est un système de gestion et d'envoi de SMS par ordinateur, initialement conçu pour les Raspberry Pi
Stars: ✭ 107 (-13.01%)
Mutual labels:  sms

Flutter Community: flutter_sms

Buy Me A Coffee Donate github pages

flutter_sms

alt-text-1

Online Demo: https://fluttercommunity.github.io/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 populate the correct fields.

Example

Make sure to Install and Import the Package.

import 'package:flutter_sms/flutter_sms.dart';

Create a function for sending messages.

void _sendSMS(String message, List<String> recipents) async {
 String _result = await sendSMS(message: message, recipients: recipents)
        .catchError((onError) {
      print(onError);
    });
print(_result);
}

You can quickly send the message with this function.

String message = "This is a test message!";
List<String> recipents = ["1234567890", "5556787676"];

_sendSMS(message, recipents);

Screenshots

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

You can find other screenshots here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].