Skip to content

Commit f686efa

Browse files
committed
Started - Drawing pad captures whole screen
1 parent e7526b3 commit f686efa

File tree

7 files changed

+284
-103
lines changed

7 files changed

+284
-103
lines changed

.idea/libraries/Dart_Packages.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/lib/main.dart

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,13 @@ class MyHomePage extends StatelessWidget {
385385
readonly: true,
386386
min: 3,
387387
),
388+
FormBuilderInput.signaturePad(
389+
attribute: "signature",
390+
label: "Signature:",
391+
// value: "John Doe",
392+
require: true,
393+
// readonly: true,
394+
),
388395
FormBuilderInput.dropdown(
389396
attribute: "dropdown",
390397
require: true,
@@ -408,7 +415,7 @@ class MyHomePage extends StatelessWidget {
408415
label: "Email",
409416
require: true,
410417
),
411-
FormBuilderInput.textField(
418+
/*FormBuilderInput.textField(
412419
type: FormBuilderInput.TYPE_URL,
413420
attribute: "url",
414421
label: "URL",
@@ -509,7 +516,7 @@ class MyHomePage extends StatelessWidget {
509516
options: List.generate(5, (i) => i + 1)
510517
.map((number) => FormBuilderInputOption(value: number))
511518
.toList(),
512-
),
519+
),*/
513520
],
514521
onChanged: (formValue) {
515522
print(formValue);

0 commit comments

Comments
 (0)