TODO: A new Flutter package with a customized Appbar.
Features
TODO: My Package give you custom app bar
Getting started
TODO: A new Flutter package with a customized Appbar.
Usage
TODO: A new Flutter package with a customized Appbar.
class Home extends StatelessWidget {
const Home({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: const CustomAppbar(title: "Home", backButton: false,),
body: Container(),
);
}
}
Additional information
TODO: A new Flutter package with a customized Appbar.