Skip to content

Commit e95bfd3

Browse files
Merge pull request #166 from SriramKiranSenthilkumar/master
Committed all the syncfusion flutter widget packages.
2 parents 3b77b4c + 261a958 commit e95bfd3

File tree

1,151 files changed

+148465
-74412
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,151 files changed

+148465
-74412
lines changed

packages/syncfusion_flutter_barcodes/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
![syncfusion_flutter_barcode_banner](https://cdn.syncfusion.com/content/images/FTControl/Flutter/Barcode%20Banner.png)
22

3-
# Syncfusion Flutter Barcodes
3+
# Flutter Barcodes library
44

5-
The Syncfusion Flutter Barcode Generator is a data visualization widget used to generate and display data in a machine-readable format. It provides a perfect approach to encoding input values using supported symbology types.
5+
Flutter Barcode Generator package is a data visualization widget used to generate and display data in a machine-readable format. It provides a perfect approach to encoding input values using supported symbology types.
66

7-
**Disclaimer:** This is a commercial package. To use this package, you need to have either a Syncfusion commercial license or Syncfusion Community License. For more details, please check the [LICENSE](https://github.com/syncfusion/flutter-examples/blob/master/LICENSE) file.
8-
9-
**Note:** Our packages are now compatible with Flutter for Web. However, this will be in Beta until Flutter for Web becomes stable.
7+
**Disclaimer:** This is a commercial package. To use this package, you need to have either a Syncfusion commercial license or [Free Syncfusion Community license](https://www.syncfusion.com/products/communitylicense). For more details, please check the [LICENSE](https://github.com/syncfusion/flutter-examples/blob/master/LICENSE) file.
108

119
## Table of contents
1210
- [Barcode Generator feature](#barcode-generator-feature)

packages/syncfusion_flutter_barcodes/analysis_options.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ analyzer:
44
errors:
55
include_file_not_found: ignore
66
lines_longer_than_80_chars: ignore
7+
avoid_as: false

packages/syncfusion_flutter_barcodes/example/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: A new Flutter project.
1414
version: 1.0.0+1
1515

1616
environment:
17-
sdk: ">=2.1.0 <3.0.0"
17+
sdk: ">=2.12.0 <3.0.0"
1818

1919
dependencies:
2020
flutter:
@@ -24,7 +24,7 @@ dependencies:
2424

2525
# The following adds the Cupertino Icons font to your application.
2626
# Use with the CupertinoIcons class for iOS style icons.
27-
cupertino_icons: ^0.1.2
27+
cupertino_icons: ^1.0.2
2828

2929
dev_dependencies:
3030
flutter_test:

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/base/barcode_generator.dart

+14-15
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ import '../one_dimensional/upca_symbology.dart';
1919
import '../one_dimensional/upce_symbology.dart';
2020

2121
import '../renderers/one_dimensional/codabar_renderer.dart';
22-
23-
import '../renderers/one_dimensional/code128A_renderer.dart';
24-
import '../renderers/one_dimensional/code128B_renderer.dart';
25-
import '../renderers/one_dimensional/code128C_renderer.dart';
2622
import '../renderers/one_dimensional/code128_renderer.dart';
23+
import '../renderers/one_dimensional/code128a_renderer.dart';
24+
import '../renderers/one_dimensional/code128b_renderer.dart';
25+
import '../renderers/one_dimensional/code128c_renderer.dart';
2726
import '../renderers/one_dimensional/code39_extended_renderer.dart';
2827
import '../renderers/one_dimensional/code39_renderer.dart';
2928
import '../renderers/one_dimensional/code93_renderer.dart';
@@ -87,9 +86,9 @@ class SfBarcodeGenerator extends StatefulWidget {
8786
///
8887
/// Default symbology is [Code128].
8988
SfBarcodeGenerator(
90-
{Key key,
91-
@required this.value,
92-
Symbology symbology,
89+
{Key? key,
90+
required this.value,
91+
Symbology? symbology,
9392
this.barColor,
9493
this.backgroundColor,
9594
this.showValue = false,
@@ -115,7 +114,7 @@ class SfBarcodeGenerator extends StatefulWidget {
115114
/// child: SfBarcodeGenerator(value:'123456'));
116115
///}
117116
/// ```dart
118-
final String value;
117+
final String? value;
119118

120119
/// Define the barcode symbology that will be used to encode the input value
121120
/// to the visual barcode representation.
@@ -160,7 +159,7 @@ class SfBarcodeGenerator extends StatefulWidget {
160159
/// barColor : Colors.red));
161160
///}
162161
/// ```dart
163-
final Color barColor;
162+
final Color? barColor;
164163

165164
/// The background color to fill the background of the [SfBarcodeGenerator].
166165
///
@@ -176,7 +175,7 @@ class SfBarcodeGenerator extends StatefulWidget {
176175
/// backgroundColor : Colors.red));
177176
///}
178177
/// ```dart
179-
final Color backgroundColor;
178+
final Color? backgroundColor;
180179

181180
/// Whether to show a human readable text (input value) along with a barcode.
182181
///
@@ -261,12 +260,12 @@ class SfBarcodeGenerator extends StatefulWidget {
261260
/// Represents the barcode generator state
262261
class _SfBarcodeGeneratorState extends State<SfBarcodeGenerator> {
263262
/// Specifies the theme data
264-
SfBarcodeThemeData _barcodeTheme;
263+
late SfBarcodeThemeData _barcodeTheme;
265264

266265
/// Specifies the text size
267-
Size _textSize;
266+
Size? _textSize;
268267

269-
SymbologyRenderer _symbologyRenderer;
268+
late SymbologyRenderer _symbologyRenderer;
270269

271270
@override
272271
void didChangeDependencies() {
@@ -332,12 +331,12 @@ class _SfBarcodeGeneratorState extends State<SfBarcodeGenerator> {
332331
if (widget.showValue && _textSize == null) {
333332
_textSize = measureText(widget.value.toString(), widget.textStyle);
334333
}
335-
_symbologyRenderer.getIsValidateInput(widget.value);
334+
_symbologyRenderer.getIsValidateInput(widget.value!);
336335
_symbologyRenderer.textSize = _textSize;
337336
return Container(
338337
color: widget.backgroundColor ?? _barcodeTheme.backgroundColor,
339338
child: SfBarcodeGeneratorRenderObjectWidget(
340-
value: widget.value,
339+
value: widget.value!,
341340
symbology: widget.symbology,
342341
foregroundColor: widget.barColor ?? _barcodeTheme.barColor,
343342
showText: widget.showValue,

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/base/symbology_base.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ abstract class Symbology {
4444
/// symbology: UPCE(module: 2)));
4545
///}
4646
/// ```dart
47-
final int module;
47+
final int? module;
4848
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/common/barcode_renderer.dart

+39-39
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import '../renderers/one_dimensional/symbology_base_renderer.dart';
88
class SfBarcodeGeneratorRenderObjectWidget extends LeafRenderObjectWidget {
99
/// Creates the render object widget
1010
const SfBarcodeGeneratorRenderObjectWidget(
11-
{Key key,
11+
{Key? key,
1212
this.value,
1313
this.symbology,
1414
this.foregroundColor,
@@ -21,75 +21,75 @@ class SfBarcodeGeneratorRenderObjectWidget extends LeafRenderObjectWidget {
2121
: super(key: key);
2222

2323
///Defines the value of the barcode to be rendered.
24-
final String value;
24+
final String? value;
2525

2626
///Define anyone of barcode symbology that will be used to
2727
///convert input value into visual barcode representation
28-
final Symbology symbology;
28+
final Symbology? symbology;
2929

3030
/// Define the color for barcode elements.
31-
final Color foregroundColor;
31+
final Color? foregroundColor;
3232

3333
/// Specifies whether to show the value along with the barcode.
34-
final bool showText;
34+
final bool? showText;
3535

3636
/// Specifies the spacing between the text and the barcode.
37-
final double textSpacing;
37+
final double? textSpacing;
3838

3939
///Defines the text alignment for the text to be rendered in the barcode.
40-
final TextStyle textStyle;
40+
final TextStyle? textStyle;
4141

4242
/// Add style to customize the text.
43-
final Size textSize;
43+
final Size? textSize;
4444

4545
/// Specifies the spacing between the text and the barcode.
46-
final TextAlign textAlign;
46+
final TextAlign? textAlign;
4747

4848
/// Specifies the corresponding renderer class
49-
final SymbologyRenderer symbologyRenderer;
49+
final SymbologyRenderer? symbologyRenderer;
5050

5151
@override
5252
RenderObject createRenderObject(BuildContext context) {
5353
return _RenderBarcode(
54-
value: value,
55-
symbology: symbology,
56-
foregroundColor: foregroundColor,
57-
showText: showText,
58-
textSpacing: textSpacing,
59-
symbologyRenderer: symbologyRenderer,
60-
textStyle: textStyle,
54+
value: value!,
55+
symbology: symbology!,
56+
foregroundColor: foregroundColor!,
57+
showText: showText!,
58+
textSpacing: textSpacing!,
59+
symbologyRenderer: symbologyRenderer!,
60+
textStyle: textStyle!,
6161
textSize: textSize,
62-
textAlign: textAlign);
62+
textAlign: textAlign!);
6363
}
6464

6565
@override
6666
void updateRenderObject(BuildContext context, _RenderBarcode renderObject) {
6767
renderObject
68-
..value = value
69-
..symbology = symbology
70-
..symbologyRenderer = symbologyRenderer
71-
..foregroundColor = foregroundColor
72-
..showText = showText
73-
..textSpacing = textSpacing
74-
..textStyle = textStyle
68+
..value = value!
69+
..symbology = symbology!
70+
..symbologyRenderer = symbologyRenderer!
71+
..foregroundColor = foregroundColor!
72+
..showText = showText!
73+
..textSpacing = textSpacing!
74+
..textStyle = textStyle!
7575
..textSize = textSize
76-
..textAlign = textAlign;
76+
..textAlign = textAlign!;
7777
}
7878
}
7979

8080
/// Represents the RenderBarcode class
8181
class _RenderBarcode extends RenderBox {
8282
/// Creates the RenderBarcode
8383
_RenderBarcode(
84-
{@required String value,
85-
Symbology symbology,
86-
SymbologyRenderer symbologyRenderer,
87-
Color foregroundColor,
88-
bool showText,
89-
double textSpacing,
90-
TextStyle textStyle,
91-
Size textSize,
92-
TextAlign textAlign})
84+
{required String value,
85+
required Symbology symbology,
86+
required SymbologyRenderer symbologyRenderer,
87+
required Color foregroundColor,
88+
required bool showText,
89+
required double textSpacing,
90+
required TextStyle textStyle,
91+
Size? textSize,
92+
required TextAlign textAlign})
9393
: _value = value,
9494
_symbology = symbology,
9595
_symbologyRenderer = symbologyRenderer,
@@ -120,7 +120,7 @@ class _RenderBarcode extends RenderBox {
120120
TextStyle _textStyle;
121121

122122
/// Add style to customize the text.
123-
Size _textSize;
123+
Size? _textSize;
124124

125125
/// Specifies the spacing between the text and the barcode.
126126
TextAlign _textAlign;
@@ -147,7 +147,7 @@ class _RenderBarcode extends RenderBox {
147147
TextStyle get textStyle => _textStyle;
148148

149149
/// Returns the text size value
150-
Size get textSize => _textSize;
150+
Size get textSize => _textSize!;
151151

152152
/// Returns the text align value
153153
TextAlign get textAlign => _textAlign;
@@ -204,7 +204,7 @@ class _RenderBarcode extends RenderBox {
204204
}
205205

206206
/// Sets the text size value
207-
set textSize(Size value) {
207+
set textSize(Size? value) {
208208
if (_textSize != value) {
209209
_textSize = value;
210210
markNeedsPaint();
@@ -252,7 +252,7 @@ class _RenderBarcode extends RenderBox {
252252
size.height -
253253
(showText
254254
? (_textSpacing +
255-
(_textSize != null ? _textSize.height : 0))
255+
(_textSize != null ? _textSize!.height : 0))
256256
: 0)),
257257
offset,
258258
value,

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/codabar_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ class Codabar extends Symbology {
77
///
88
/// The arguments [module] must be non-negative and greater than 0.
99
///
10-
Codabar({int module}) : super(module: module);
10+
Codabar({int? module}) : super(module: module);
1111
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/code128_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Code128 extends Symbology {
1818
/// This is a very large method. This method could be
1919
/// refactor to a smaller methods, but it degrades the performance.Since it
2020
/// adds the character corresponding to this symbology is added in to the list
21-
Code128({int module})
21+
Code128({int? module})
2222
: super(
2323
module: module,
2424
);

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/code128a_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ class Code128A extends Code128 {
99
///
1010
/// The arguments [module] must be non-negative and greater than 0.
1111
///
12-
Code128A({int module}) : super(module: module);
12+
Code128A({int? module}) : super(module: module);
1313
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/code128b_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ class Code128B extends Code128 {
99
///
1010
/// The arguments [module] must be non-negative and greater than 0.
1111
///
12-
Code128B({int module}) : super(module: module);
12+
Code128B({int? module}) : super(module: module);
1313
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/code128c_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ class Code128C extends Code128 {
99
///
1010
/// The arguments [module] must be non-negative and greater than 0.
1111
///
12-
Code128C({int module}) : super(module: module);
12+
Code128C({int? module}) : super(module: module);
1313
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/code39_extended_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ class Code39Extended extends Code39 {
1717
/// This is a very large method. This method could be
1818
/// refactored to a smaller methods, but it degrades the performance.Since it
1919
/// adds character corresponding to this symbology is added in to the list
20-
Code39Extended({int module, bool enableCheckSum})
20+
Code39Extended({int? module, bool? enableCheckSum})
2121
: super(module: module, enableCheckSum: enableCheckSum ?? true);
2222
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/code39_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Code39 extends Symbology {
2323
/// a modulo 43 checksum can be added,
2424
/// if the [enableCheckSum] is true.
2525
///
26-
Code39({int module, this.enableCheckSum = true}) : super(module: module);
26+
Code39({int? module, this.enableCheckSum = true}) : super(module: module);
2727

2828
/// Whether to add a checksum on the far right side of the barcode.
2929
///

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/code93_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ class Code93 extends Symbology {
1414
/// high level of accuracy.
1515
/// The checksum character is the modulo 47 remainder of the sum of the
1616
/// weighted value of the data characters.
17-
Code93({int module}) : super(module: module);
17+
Code93({int? module}) : super(module: module);
1818
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/ean13_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ class EAN13 extends Symbology {
2323
/// valid check digit otherwise remove it, since it has been calculated
2424
/// automatically.
2525
///
26-
EAN13({int module}) : super(module: module);
26+
EAN13({int? module}) : super(module: module);
2727
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/ean8_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ class EAN8 extends Symbology {
2020
/// valid check digit otherwise remove it, since it has been calculated
2121
/// automatically.
2222
///
23-
EAN8({int module}) : super(module: module);
23+
EAN8({int? module}) : super(module: module);
2424
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/upca_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ class UPCA extends Symbology {
2121
/// be valid check digit otherwise remove it, since it has been calculated
2222
/// automatically.
2323
///
24-
UPCA({int module}) : super(module: module);
24+
UPCA({int? module}) : super(module: module);
2525
}

packages/syncfusion_flutter_barcodes/lib/src/barcode_generator/one_dimensional/upce_symbology.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ class UPCE extends Symbology {
1616
/// By default, the number system(0) will add at the front and check digit
1717
/// at the end along with 6 digits of the input product code.
1818
///
19-
UPCE({int module}) : super(module: module);
19+
UPCE({int? module}) : super(module: module);
2020
}

0 commit comments

Comments
 (0)