Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.

Commit 96f28a8

Browse files
author
Rody Davis
committed
adding web support
1 parent 65323c2 commit 96f28a8

File tree

75 files changed

+62363
-268
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+62363
-268
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.0.0
2+
3+
* Adding Online Demo
4+
* Adding Support for Web
5+
16
## 1.1.0
27

38
* Updating for latest ios/android flutter plugin template

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
# flutter_sms
77

8-
![alt-text-1](https://github.com/AppleEducate/flutter_sms/blob/master/screenshots/ios_blank.PNG)
8+
![alt-text-1](https://github.com/fluttercommunity/flutter_sms/blob/master/screenshots/ios_blank.PNG)
9+
10+
Online Demo: https://fluttercommunity.github.io/flutter_sms/
911

1012
## Description
1113

@@ -56,6 +58,6 @@ _sendSMS(message, recipents);
5658

5759
iOS SMS | Android MMS
5860
:-------------------------:|:-------------------------:
59-
![alt-text-1](https://github.com/AppleEducate/flutter_sms/blob/master/screenshots/ios_sms.PNG) | ![alt-text-2](https://github.com/AppleEducate/flutter_sms/blob/master/screenshots/android_mms.png)
61+
![alt-text-1](https://github.com/fluttercommunity/flutter_sms/blob/master/screenshots/ios_sms.PNG) | ![alt-text-2](https://github.com/fluttercommunity/flutter_sms/blob/master/screenshots/android_mms.png)
6062

61-
You can find other [screenshots here](https://github.com/AppleEducate/flutter_sms/tree/master/screenshots).
63+
You can find other [screenshots here](https://github.com/fluttercommunity/flutter_sms/tree/master/screenshots).

docs/assets/AssetManifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]}

docs/assets/FontManifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.ttf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}]

docs/assets/LICENSE

Lines changed: 14575 additions & 0 deletions
Large diffs are not rendered by default.
131 KB
Binary file not shown.
91.4 KB
Binary file not shown.

docs/favicon.png

917 Bytes
Loading

docs/flutter_service_worker.js

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
'use strict';
2+
const CACHE_NAME = 'flutter-app-cache';
3+
const RESOURCES = {
4+
"/index.html": "e36211d86e9c70409c58295974f749a1",
5+
"/main.dart.js": "388e74175cdedc722d22888ba764ee3a",
6+
"/favicon.png": "5dcef449791fa27946b3d35ad8803796",
7+
"/icons/Icon-192.png": "ac9a721a12bbc803b44f645561ecb1e1",
8+
"/icons/Icon-512.png": "96e752610906ba2a93c65f8abe1645f1",
9+
"/manifest.json": "00e0b69b49487ce4f9ff0c5fac8fda49",
10+
"/assets/LICENSE": "ee99dec4151f6911362ee2ce14ada8e5",
11+
"/assets/AssetManifest.json": "2efbb41d7877d10aac9d091f58ccd7b9",
12+
"/assets/FontManifest.json": "01700ba55b08a6141f33e168c4a6c22f",
13+
"/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf": "115e937bb829a890521f72d2e664b632",
14+
"/assets/fonts/MaterialIcons-Regular.ttf": "56d3ffdef7a25659eab6a68a3fbfaf16"
15+
};
16+
17+
self.addEventListener('activate', function (event) {
18+
event.waitUntil(
19+
caches.keys().then(function (cacheName) {
20+
return caches.delete(cacheName);
21+
}).then(function (_) {
22+
return caches.open(CACHE_NAME);
23+
}).then(function (cache) {
24+
return cache.addAll(Object.keys(RESOURCES));
25+
})
26+
);
27+
});
28+
29+
self.addEventListener('fetch', function (event) {
30+
event.respondWith(
31+
caches.match(event.request)
32+
.then(function (response) {
33+
if (response) {
34+
return response;
35+
}
36+
return fetch(event.request, {
37+
credentials: 'include'
38+
});
39+
})
40+
);
41+
});

docs/icons/Icon-192.png

5.17 KB
Loading

0 commit comments

Comments
 (0)