Skip to content

Commit

Permalink
feat: Update HeaderBar to use HeaderBarState in HomePage
Browse files Browse the repository at this point in the history
The HeaderBar in the HomePage has been updated to use the HeaderBarState class instead of the HeaderBar class. This change ensures consistency and improves code readability.
  • Loading branch information
Polabiel committed Aug 2, 2024
1 parent 1e2e966 commit dc4ee8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/app/home/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class HomepageState extends State<Homepage> {
@override
Widget build(BuildContext context) {
return const Scaffold(
appBar: HeaderBar(),
appBar: HeaderBarState(),
drawer: SideMenu(),
body: Center(
child: Column(
Expand Down

0 comments on commit dc4ee8b

Please sign in to comment.