Home page for the Flutter Web POC
Features
Home page with a textbox where user can enter the name.
Getting started
List prerequisites and provide or point to information on how to start using the package.
Usage
Include short and useful examples for package users. Add longer examples
to /example
folder.
part of home;
// ignore: must_be_immutable class HomePage extends StatefulWidget { String heading; String btnText; String helloText; TextEditingController controller; VoidCallback onPressed;
HomePage({ required this.heading, required this.btnText, required this.helloText, required this.controller, required this.onPressed, super.key, });
@override State
class _HomePageState extends State