Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2021-01-06 17:40:46 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
dff62528b1564de9430cad51cb5c32d9f6c276ff
dff62528
1 parent
32811c29
Remove useless files
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
39 deletions
.gitignore
printing/CHANGELOG.md
printing/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
printing/macos/Flutter/GeneratedPluginRegistrant.swift
printing/pubspec.yaml
.gitignore
View file @
dff6252
...
...
@@ -53,3 +53,5 @@ cache_*
.vscode
package.json
GeneratedPluginRegistrant.*
...
...
printing/CHANGELOG.md
View file @
dff6252
# Changelog
## 4.0.1
-
Remove useless files
## 4.0.0
-
Remove deprecated methods
...
...
printing/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
deleted
100644 → 0
View file @
32811c2
package
io
.
flutter
.
plugins
;
import
io.flutter.plugin.common.PluginRegistry
;
import
net.nfet.flutter.printing.PrintingPlugin
;
/**
* Generated file. Do not edit.
*/
public
final
class
GeneratedPluginRegistrant
{
public
static
void
registerWith
(
PluginRegistry
registry
)
{
if
(
alreadyRegisteredWith
(
registry
))
{
return
;
}
PrintingPlugin
.
registerWith
(
registry
.
registrarFor
(
"net.nfet.flutter.printing.PrintingPlugin"
));
}
private
static
boolean
alreadyRegisteredWith
(
PluginRegistry
registry
)
{
final
String
key
=
GeneratedPluginRegistrant
.
class
.
getCanonicalName
();
if
(
registry
.
hasPlugin
(
key
))
{
return
true
;
}
registry
.
registrarFor
(
key
);
return
false
;
}
}
printing/macos/Flutter/GeneratedPluginRegistrant.swift
deleted
100644 → 0
View file @
32811c2
//
// Generated file. Do not edit.
//
import
FlutterMacOS
import
Foundation
import
printing
func
RegisterGeneratedPlugins
(
registry
:
FlutterPluginRegistry
)
{
PrintingPlugin
.
register
(
with
:
registry
.
registrar
(
forPlugin
:
"PrintingPlugin"
))
}
printing/pubspec.yaml
View file @
dff6252
...
...
@@ -4,7 +4,7 @@ description: Plugin that allows Flutter apps to generate and print documents to
homepage
:
https://github.com/DavBfr/dart_pdf/tree/master/printing
repository
:
https://github.com/DavBfr/dart_pdf
issue_tracker
:
https://github.com/DavBfr/dart_pdf/issues
version
:
4.0.
0
version
:
4.0.
1
environment
:
sdk
:
"
>=2.3.0
<3.0.0"
...
...
Please
register
or
login
to post a comment