songjinwei_plugin 0.0.2
songjinwei_plugin #
Plugin List ,you can use this plugin to your flutter project, it can help you do somethig, eg:
1, save network image into phone album
2, phone someone
Getting Started #
saveImage(String url) async {
var saveStatus = await SongJinWeiPlugin.saveImage2NativePlugin(url, 'FlutterPlugin');
print(saveStatus ? 'save success' : 'save error');
Fluttertoast.showToast(
msg: saveStatus ? 'save success' : 'save error',
toastLength: Toast.LENGTH_LONG,
gravity: ToastGravity.CENTER,
timeInSecForIos: 1,
backgroundColor: Colors.grey,
textColor: Colors.white,
fontSize: (30));
}
iOS #
Add the following keys to your Info.plist file, located in
- NSPhotoLibraryAddUsageDescription - describe why your app needs permission for the photo library. This is called Privacy - Photo Library Additions Usage Description in the visual editor
Android #
Add the following keys to your AndroidManifest.xml file:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
0.0.1 #
INIT PROJECT #
Plugin List ,you can use this plugin to your flutter project, it can help you do somethig, eg:
- 1, save network image into phone album
- 2, phone someone
0.0.2 #
ADD README #
Plugin List ,you can use this plugin to your flutter project, it can help you do somethig, eg:
- 1, save network image into phone album
- 2, phone someone
example/README.md
example/lib/main.dart #
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:songjinwei_plugin/songjinwei_plugin.dart';
import 'package:fluttertoast/fluttertoast.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Column(
children: <Widget>[
Center(
child: MaterialButton(
onPressed: () {
SongJinWeiPlugin.makePhonePlugin('15210265066');
},
child: Text('拨打电话'),
textColor: Colors.white,
color: Colors.red,
),
),
Center(
child: MaterialButton(
onPressed: () {
saveImage(
'https://assets.leetcode-cn.com/aliyun-lc-upload/users/imsong/avatar_1546581147.png');
},
child: Text('保存图片'),
textColor: Colors.white,
color: Colors.green,
),
)
],
),
),
);
}
saveImage(String url) async {
var saveStatus =
await SongJinWeiPlugin.saveImage2NativePlugin(url, 'FlutterPlugin');
print(saveStatus ? '成功' : '失败');
Fluttertoast.showToast(
msg: saveStatus ? '保存成功' : '保存失败',
toastLength: Toast.LENGTH_LONG,
gravity: ToastGravity.CENTER,
timeInSecForIos: 1,
backgroundColor: Colors.grey,
textColor: Colors.white,
fontSize: (30));
}
}
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
songjinwei_plugin: ^0.0.2
2. Install it
You can install packages from the command line:
with Flutter:
$ flutter pub get
Alternatively, your editor might support flutter pub get
.
Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:songjinwei_plugin/songjinwei_plugin.dart';
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
0
|
Health:
Code health derived from static analysis.
[more]
|
99
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
70
|
Overall:
Weighted score of the above.
[more]
|
44
|
We analyzed this package on Dec 13, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
- Dart: 2.6.1
- pana: 0.12.21
- Flutter: 1.9.1+hotfix.6
Health issues and suggestions
Document public APIs. (-1 points)
6 out of 6 API elements have no dartdoc comment.Providing good documentation for libraries, classes, functions, and other API elements improves code readability and helps developers find and use your API.
Format lib/songjinwei_plugin.dart
.
Run flutter format
to format lib/songjinwei_plugin.dart
.
Maintenance suggestions
The package description is too short. (-20 points)
Add more detail to the description
field of pubspec.yaml
. Use 60 to 180 characters to describe the package, what it does, and its target use case.
Package is pre-v0.1 release. (-10 points)
While nothing is inherently wrong with versions of 0.0.*
, it might mean that the author is still experimenting with the general direction of the API.
Dependencies
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.1.0 <3.0.0 | ||
flutter | 0.0.0 | ||
fluttertoast | ^3.0.1 | 3.1.3 | |
http | ^0.12.0+2 | 0.12.0+2 | |
Transitive dependencies | |||
async | 2.4.0 | ||
charcode | 1.1.2 | ||
collection | 1.14.11 | 1.14.12 | |
http_parser | 3.1.3 | ||
meta | 1.1.7 | 1.1.8 | |
path | 1.6.4 | ||
pedantic | 1.9.0 | ||
sky_engine | 0.0.99 | ||
source_span | 1.5.5 | ||
string_scanner | 1.0.5 | ||
term_glyph | 1.1.0 | ||
typed_data | 1.1.6 | ||
vector_math | 2.0.8 | ||
Dev dependencies | |||
flutter_test |