Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/syncfusion_flutter_barcodes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased

* No changes.

## [30.1.37] - 06/25/2025

**General**

* The compatible version of our Flutter barcodes widget has been updated to Flutter SDK 3.32.0.
Expand Down
18 changes: 7 additions & 11 deletions packages/syncfusion_flutter_barcodes/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
name: example
description: A new Flutter project.

version: 1.0.0
name: barcodes_example
description: "A Barcodes widget example project."
version: 1.0.0+1

environment:
sdk: ^3.7.0-0
sdk: ^3.7.0

flutter:
uses-material-design: true

dependencies:
flutter:
sdk: flutter
syncfusion_flutter_barcodes:
path: ../

cupertino_icons: ^1.0.2

dev_dependencies:
flutter_test:
sdk: flutter

flutter:

uses-material-design: true
22 changes: 6 additions & 16 deletions packages/syncfusion_flutter_barcodes/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,19 @@
name: syncfusion_flutter_barcodes
description: Flutter Barcodes generator library is used to generate and display data in the machine-readable, industry-standard 1D and 2D barcodes.
version: 30.1.37
version: 31.1.17
homepage: https://github.com/syncfusion/flutter-widgets/tree/master/packages/syncfusion_flutter_barcodes

screenshots:
- description: 'This screenshot shows the 6 one dimensional symbology type image.'

- description: 'This screenshot shows the another 6 one dimensional symbology image.'

- description: 'This screenshot shows two dimensional symbology of the qrcode and data matrix image.'


environment:
sdk: ^3.7.0
flutter: ">=3.29.0"

flutter:
uses-material-design: true

dependencies:
flutter:
sdk: flutter
syncfusion_flutter_core:
path: ../syncfusion_flutter_core

path: ../syncfusion_flutter_core




flutter:


Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions packages/syncfusion_flutter_calendar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased

* No changes.

## [30.1.37] - 06/25/2025

**General**

* Upgraded the `timezone` package to the latest version 0.10.1.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

31 changes: 0 additions & 31 deletions packages/syncfusion_flutter_calendar/example/android/build.gradle

This file was deleted.

This file was deleted.

87 changes: 0 additions & 87 deletions packages/syncfusion_flutter_calendar/example/ios/Podfile

This file was deleted.

15 changes: 6 additions & 9 deletions packages/syncfusion_flutter_calendar/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
name: example
description: Syncfusion calendar example.
name: calendar_example
description: "A Calendar widget example project."
version: 1.0.0+1

environment:
sdk: ^3.7.0-0
sdk: ^3.7.0

flutter:
uses-material-design: true

dependencies:
flutter:
sdk: flutter

cupertino_icons: ^1.0.2
syncfusion_flutter_calendar:
path: ../

dev_dependencies:
flutter_test:
sdk: flutter

flutter:

uses-material-design: true
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,9 @@ class Appointment with Diagnosticable {
this.subject = '',
this.color = Colors.lightBlue,
this.recurrenceExceptionDates,
}) : notes =
notes != null && notes.contains('isOccurrenceAppointment')
? notes.replaceAll('isOccurrenceAppointment', '')
: notes,
}) : notes = notes != null && notes.contains('isOccurrenceAppointment')
? notes.replaceAll('isOccurrenceAppointment', '')
: notes,
_notes = notes {
recurrenceRule = recurrenceId != null ? null : recurrenceRule;
_appointmentType = _getAppointmentType();
Expand Down
Loading