We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1185336 commit 2fc345cCopy full SHA for 2fc345c
lib/src/fields/form_builder_phone_field.dart
@@ -155,7 +155,7 @@ class FormBuilderPhoneFieldState extends State<FormBuilderPhoneField> {
155
}
156
157
_parsePhone() async {
158
- if (_initialValue.isNotEmpty) {
+ if (_initialValue != null && _initialValue.isNotEmpty) {
159
try {
160
var parseResult = await PhoneNumber().parse(_initialValue);
161
print(parseResult);
lib/src/widgets/signature.dart
@@ -4,6 +4,7 @@ import 'dart:ui';
4
5
import 'package:flutter/material.dart';
6
7
+//TODO: Delete class. No longer used
8
///Signature canvas. All parameters are optional. It expands by default. This behaviour can be
9
///overridden using width and/or height parameters.
10
class Signature extends StatefulWidget {
0 commit comments