Update code

This commit is contained in:
2024-02-08 16:12:45 +08:00
parent 91144bf8f1
commit f47d3b8810
38 changed files with 554 additions and 211 deletions

View File

@@ -4,14 +4,13 @@ import 'package:flutter_gen/gen_l10n/app_localizations.dart';
class NumberFormField extends StatelessWidget {
const NumberFormField(
{Key? key,
{super.key,
this.min,
this.max,
this.initialValue,
this.errorMsg,
this.decoration,
this.onChanged})
: super(key: key);
this.onChanged});
final int? min;
final int? max;