Flutter Viral Animated Validation Form
Viral Form Recently a video go viral on Social Media. An web developer build a Submit Form with Funny Interaction. When someone try to submit an invalid form then the submit button will run far from mouse cursor. In this article we will learn How to make Funny Validation Form on Flutter. Take A Look Here Add Dependency First of all create a new flutter project and In the pubspec.yaml of your flutter project, add the following dependency: velocity_x: ^3.6.0 google_fonts: ^3.0.1 What is ValocityX? If you don't know about velocityX then lets know something new. VelocityX in Flutter is a free Flutter open-source minimalist UI Framework built with Flutter SDK to make Flutter development easier. It is inspired from Tailwindcss and SwiftUI. Create Form Page Create a new file called form.dart and Paste the code we provided below. It is very basic, if you follow my previous tutorial then you may know. Form Page: import 'package:flutter/material.dart'; import 'package:velocity_...