How to create Fullstate widget in flutter manually
step 1. Create a class with MywidgetName and extends it.
class MyWidget extends StatefulWidget extends {
}
// Then creae a another class with same name but
class MyWidgetState extends State<MyWidget>{
@override
Widget build(BuildCo...
ichiragkumar.tech1 min read