wrapped custom_navigation_bar in safearea

This commit is contained in:
2025-11-15 17:11:48 +01:00
parent 1536e2b2af
commit 36aa4722a3

View File

@@ -31,7 +31,8 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return SafeArea(
child: Scaffold(
appBar: AppBar( appBar: AppBar(
centerTitle: true, centerTitle: true,
title: Text( title: Text(
@@ -101,6 +102,7 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
), ),
), ),
), ),
),
); );
} }