Skip to content

Instantly share code, notes, and snippets.

View adomhamza's full-sized avatar
💯

NII HAMZA ADOM adomhamza

💯
View GitHub Profile
@adomhamza
adomhamza / text-editing-controller-animated-builder.dart
Created October 13, 2021 22:46 — forked from bizz84/flutter-text-field-validation.dart
TextField validation made easy with TextEditingController and AnimatedBuilder
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override