-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(interface): add coverage badge and min coverage to 90
- Loading branch information
1 parent
00dac1c
commit 2b6041a
Showing
6 changed files
with
253 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
## 2.0.0 | ||
|
||
* Replaced Equatable with manual property comparisons using Dart. | ||
* Added error handling to improve process control. | ||
* Implemented unit tests to ensure the correctness of changes. | ||
|
||
## 1.0.0 | ||
|
||
* Stable version with basic functionality and new structure | ||
|
||
# 0.5.0 | ||
|
||
* Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
# flutter_document_scanner_platform_interface | ||
|
||
[![style: very good analysis][very_good_analysis_badge]][very_good_analysis_link] | ||
[![Coverage](https://codecov.io/gh/criistian14/flutter_document_scanner/branch/master/graph/badge.svg?flag=flutter_document_scanner_platform_interface)](https://codecov.io/gh/criistian14/flutter_document_scanner) | ||
|
||
A common platform interface for the [`flutter_document_scanner`][pub_link] plugin. | ||
|
||
This interface allows platform-specific implementations of the `flutter_document_scanner` plugin, as well as the plugin itself, to ensure they are supporting the same interface. | ||
This interface allows platform-specific implementations of the `flutter_document_scanner` plugin, as well as the plugin | ||
itself, to ensure they are supporting the same interface. | ||
|
||
# Usage | ||
|
||
To implement a new platform-specific implementation of `flutter_document_scanner`, extend `FlutterDocumentScannerPlatform` with an implementation that performs the platform-specific behavior. | ||
To implement a new platform-specific implementation of `flutter_document_scanner`, extend | ||
`FlutterDocumentScannerPlatform` with an implementation that performs the platform-specific behavior. | ||
|
||
[pub_link]: https://pub.dev/packages/flutter_document_scanner | ||
|
||
[very_good_analysis_badge]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg | ||
|
||
[very_good_analysis_link]: https://pub.dev/packages/very_good_analysis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters