You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/syncfusion_flutter_barcodes/CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
## Unreleased
2
2
3
+
**Bugs**
4
+
5
+
* #FB45676 - Now, the QR code generated for all kinds of the input values with 07 [codeVersion](https://pub.dev/documentation/syncfusion_flutter_barcodes/latest/barcodes/QRCode/codeVersion.html), medium [errorCorrectionLevel](https://pub.dev/documentation/syncfusion_flutter_barcodes/latest/barcodes/QRCode/errorCorrectionLevel.html), and alphaNumeric [inputMode](https://pub.dev/documentation/syncfusion_flutter_barcodes/latest/barcodes/QRCode/inputMode.html) will be scannable.
6
+
7
+
## [22.1.36] 06/28/2023
8
+
9
+
**Bugs**
10
+
* #FB44237 - Now, the QR code generated for all kinds of input values with 07 [codeVersion](https://pub.dev/documentation/syncfusion_flutter_barcodes/latest/barcodes/QRCode/codeVersion.html) will be scannable.
11
+
12
+
## [21.1.37] - 03/29/2023
13
+
3
14
**Bugs**
4
15
* #FB41210 - Now, the QR code generated for the input string contains 17 continuous spaces with medium [errorCorrectionLevel](https://pub.dev/documentation/syncfusion_flutter_barcodes/latest/barcodes/QRCode/errorCorrectionLevel.html), and 07 [codeVersion](https://pub.dev/documentation/syncfusion_flutter_barcodes/latest/barcodes/QRCode/codeVersion.html) will be scannable.
Copy file name to clipboardExpand all lines: packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/renderers/two_dimensional/error_correction_codewords.dart
+21-28Lines changed: 21 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -299,7 +299,7 @@ class ErrorCorrectionCodeWords {
299
299
/// refactored to a smaller methods, but it degrades the performance.Since it
300
300
/// uses single switch condition for calculating the error correction code
301
301
/// word based on the provided version
302
-
List<String> getERCW(String encodedText) {
302
+
List<String> getERCW() {
303
303
List<int> decimalRepresentation;
304
304
List<String> errorCorrectionWord;
305
305
_decimalValue =<int>[dataBits];
@@ -1600,7 +1600,7 @@ class ErrorCorrectionCodeWords {
Copy file name to clipboardExpand all lines: packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/renderers/two_dimensional/qr_code_renderer.dart
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1819,15 +1819,15 @@ class QRCodeRenderer extends SymbologyRenderer {
Copy file name to clipboardExpand all lines: packages/syncfusion_flutter_calendar/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
## [22.2.5]
2
+
**Features**
3
+
* Provided support to accessibility for builders in the Flutter event calendar.
4
+
1
5
## [20.3.56]
2
6
**Features**
3
7
* Provided text style customization support for the text in the placeholder (`No events` and `No selected date`) in the month agenda view and (`No events`) in the schedule view of the flutter event calendar.
0 commit comments