0 purchases
widget base state
A Flutter package for base state for widget.
Features #
Getting started #
Usage #
class DemoScreen extends StatefulWidget {
const DemoScreen({super.key});
@override
State<DemoScreen> createState() => _DemoScreenState();
}
class _DemoScreenState extends BaseState<DemoScreen> {
@override
Widget buildBody(BuildContext context) {
return Container();
}
}
copied to clipboard
Additional information #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.