updating pod spec
This commit is contained in:
parent
6af3892d68
commit
9bb2103b74
14
.vscode/launch.json
vendored
Normal file
14
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Flutter",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "dart",
|
||||||
|
"program": "example/lib/main.dart"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -202,31 +202,31 @@ class _MyAppState extends State<MyApp> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
Divider(),
|
Divider(),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.all(8),
|
|
||||||
child: Text(
|
|
||||||
"Can send SMS",
|
|
||||||
style: Theme.of(context).textTheme.title,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.all(8),
|
padding: const EdgeInsets.all(8),
|
||||||
child: Text(_canSendSMSMessage,
|
child: Text(
|
||||||
style: Theme.of(context).textTheme.body1)),
|
"Can send SMS",
|
||||||
Padding(
|
style: Theme.of(context).textTheme.title,
|
||||||
padding:
|
),
|
||||||
const EdgeInsets.symmetric(vertical: 8.0, horizontal: 24),
|
|
||||||
child: RaisedButton(
|
|
||||||
color: Theme.of(context).accentColor,
|
|
||||||
padding: EdgeInsets.symmetric(vertical: 16),
|
|
||||||
child: Text("RUN CHECK",
|
|
||||||
style: Theme.of(context).accentTextTheme.button),
|
|
||||||
onPressed: () {
|
|
||||||
_canSendSMS();
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
)
|
Padding(
|
||||||
|
padding: const EdgeInsets.all(8),
|
||||||
|
child: Text(_canSendSMSMessage,
|
||||||
|
style: Theme.of(context).textTheme.body1)),
|
||||||
|
Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.symmetric(vertical: 8.0, horizontal: 24),
|
||||||
|
child: RaisedButton(
|
||||||
|
color: Theme.of(context).accentColor,
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 16),
|
||||||
|
child: Text("RUN CHECK",
|
||||||
|
style: Theme.of(context).accentTextTheme.button),
|
||||||
|
onPressed: () {
|
||||||
|
_canSendSMS();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -4,14 +4,14 @@
|
|||||||
#
|
#
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'flutter_sms'
|
s.name = 'flutter_sms'
|
||||||
s.version = '0.0.1'
|
s.version = '1.1.0'
|
||||||
s.summary = 'A new flutter plugin project.'
|
s.summary = 'A Flutter plugin for Sending SMS on Android and iOS.'
|
||||||
s.description = <<-DESC
|
s.description = <<-DESC
|
||||||
A new flutter plugin project.
|
A new flutter plugin project.
|
||||||
DESC
|
DESC
|
||||||
s.homepage = 'http://example.com'
|
s.homepage = 'https://github.com/fluttercommunity/flutter_sms'
|
||||||
s.license = { :file => '../LICENSE' }
|
s.license = { :file => '../LICENSE' }
|
||||||
s.author = { 'Your Company' => 'email@example.com' }
|
s.author = { 'Rody Davis' => 'rody.davis.jr@gmail.com' }
|
||||||
s.source = { :path => '.' }
|
s.source = { :path => '.' }
|
||||||
s.source_files = 'Classes/**/*'
|
s.source_files = 'Classes/**/*'
|
||||||
s.public_header_files = 'Classes/**/*.h'
|
s.public_header_files = 'Classes/**/*.h'
|
||||||
|
@ -2,7 +2,7 @@ name: flutter_sms
|
|||||||
description: 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.
|
description: 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.
|
||||||
version: 1.1.0
|
version: 1.1.0
|
||||||
author: Rody Davis <rody.davis.jr@gmail.com>
|
author: Rody Davis <rody.davis.jr@gmail.com>
|
||||||
homepage: https://github.com/AppleEducate/plugins
|
homepage: https://github.com/fluttercommunity/flutter_sms
|
||||||
maintainer: Rody Davis (@AppleEducate)
|
maintainer: Rody Davis (@AppleEducate)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user