EXPERIMENT-7
7a)Design a form with various input fields. import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'User Form', home: Scaffold( appBar: AppBar( title: Text('User Input Form'), ), body: SingleChildScrollView( padding: EdgeInsets.all(16.0), child: UserForm(), ), ), ); } } class UserForm extends StatefulWidget { @override State<UserForm> createState() => _UserFormState(); } class _UserFormState extends State<UserForm> { String? _name; String? _email; String? _phoneNumber; ...