Update header widget
This commit is contained in:
parent
1e5382e8f1
commit
c6090a307a
|
@ -15,7 +15,7 @@ class HeaderWidget extends StatelessWidget {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
padding: const EdgeInsets.only(left: 40, right: 40, top: 20, bottom: 15),
|
||||
padding: const EdgeInsets.only(left: 40, right: 36, top: 20, bottom: 15),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
|
@ -31,6 +31,8 @@ class HeaderWidget extends StatelessWidget {
|
|||
if (link != null)
|
||||
GestureDetector(
|
||||
onTap: () => context.router.navigate(link!.href),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(4),
|
||||
child: Text(
|
||||
link!.text,
|
||||
style: furmanTextStyle(const TextStyle(
|
||||
|
@ -40,6 +42,7 @@ class HeaderWidget extends StatelessWidget {
|
|||
)),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue