@@ -96,7 +96,6 @@ class ZetaGlobalHeader extends ZetaStatelessWidget {
9696 children: [
9797 //Left side of header
9898 Row (
99- mainAxisSize: MainAxisSize .min,
10099 children: [
101100 ZetaIconButton (
102101 icon: ZetaIcons .hamburger_menu,
@@ -117,13 +116,23 @@ class ZetaGlobalHeader extends ZetaStatelessWidget {
117116 SizedBox (width: Zeta .of (context).spacing.large),
118117 //Generate nav items
119118 if (navItems.isNotEmpty)
120- Row (
121- mainAxisSize: MainAxisSize .min,
122- children: navItems.take (6 ).map ((item) => SizedBox (
123- width: 100 ,
124- child: item,
119+ Container (
120+ padding: EdgeInsets .only (left: Zeta .of (context).spacing.large),
121+ decoration: BoxDecoration (
122+ border: Border (
123+ left: BorderSide (
124+ color: colors.borderDefault,
125+ ),
126+ ),
125127 ),
128+ child: Row (
129+ mainAxisSize: MainAxisSize .min,
130+ children: navItems.take (6 ).map ((item) => SizedBox (
131+ width: 90 ,
132+ child: item,
133+ ),
126134 ).toList (),
135+ ),
127136 ),
128137 // Container(
129138 // padding: EdgeInsets.only(left: Zeta.of(context).spacing.large),
@@ -151,18 +160,17 @@ class ZetaGlobalHeader extends ZetaStatelessWidget {
151160 ),
152161 //Right side of header
153162 Row (
154- mainAxisSize: MainAxisSize .min,
155163 children: [
156164 if (searchBar)
157165 Container (
158166 width: 240 ,
159- padding: EdgeInsets .only (right : Zeta .of (context).spacing.large ),
167+ padding: EdgeInsets .only (left : Zeta .of (context).spacing.small ),
160168 child: ZetaSearchBar (size: ZetaWidgetSize .small, showSpeechToText: false ),
161169 ),
162170 //Action Items
163171 if (actionItems.isNotEmpty)
164172 Container (
165- padding: EdgeInsets .only (right: Zeta .of (context).spacing.small),
173+ padding: EdgeInsets .only (left : Zeta . of (context).spacing.small, right: Zeta .of (context).spacing.small),
166174 decoration: BoxDecoration (
167175 border: Border (
168176 right: BorderSide (
0 commit comments