Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlyp committed Jul 26, 2024
1 parent 366d106 commit 65b7b55
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions bruig/flutterui/bruig/lib/components/pages/forms.dart
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ class CustomFormState extends State<CustomForm> {
FormElement get form => widget.form;
@override
Widget build(BuildContext context) {
print("Sadfsdf");
_FormField? submit;

List<Widget> fieldWidgets = [];
Expand All @@ -106,8 +105,6 @@ class CustomFormState extends State<CustomForm> {
if (field.value is String) {
ctrl.text = field.value;
}
print(field.hint);
print(field.regexp);
fieldWidgets.add(TextFormField(
controller: ctrl,
decoration: InputDecoration(
Expand Down

0 comments on commit 65b7b55

Please sign in to comment.