mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 21:33:44 +02:00
18 lines
317 B
Dart
18 lines
317 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
abstract class AuthField {
|
|
AuthField({
|
|
required this.name,
|
|
required this.title,
|
|
this.validators = const [],
|
|
this.value = '',
|
|
});
|
|
|
|
final String name;
|
|
final String title;
|
|
List<String? Function(String?)> validators;
|
|
String value;
|
|
|
|
Widget build();
|
|
}
|