initial commit to gitea

This commit is contained in:
2022-03-10 00:47:26 -05:00
parent 808ffa3211
commit f504e213a0
93 changed files with 4394 additions and 1539 deletions

View File

@@ -39,7 +39,8 @@ class DesktopAppBarMenu extends StatelessWidget {
TextLink(
S.of(context).home,
'/',
color: Colors.white,
color: Colors.white60,
hoverColor: Colors.white,
selected: currentRoute == '/',
clearStack: true,
),
@@ -47,14 +48,16 @@ class DesktopAppBarMenu extends StatelessWidget {
TextLink(
S.of(context).download,
'/download',
color: Colors.white,
color: Colors.white60,
hoverColor: Colors.white,
selected: currentRoute == '/download',
),
SizedBox(width: 15.0,),
TextLink(
S.of(context).tutorials,
Constants.TUTORIAL_URL,
color: Colors.white,
color: Colors.white60,
hoverColor: Colors.white,
selected: currentRoute == '/tutorials',
isLink: true,
),
@@ -62,21 +65,24 @@ class DesktopAppBarMenu extends StatelessWidget {
TextLink(
S.of(context).support,
'/my-support/${Constants.BUSINESS_ID}',
color: Colors.white,
color: Colors.white60,
hoverColor: Colors.white,
selected: currentRoute == '/my-support/${Constants.BUSINESS_ID}',
),
SizedBox(width: 15.0,),
TextLink(
S.of(context).shop,
'/shop',
color: Colors.white,
color: Colors.white60,
hoverColor: Colors.white,
selected: currentRoute == '/shop',
),
SizedBox(width: 15.0,),
TextLink(
S.of(context).blog,
'/blog/${Constants.BUSINESS_ID}',
color: Colors.white,
color: Colors.white60,
hoverColor: Colors.white,
selected: currentRoute == '/blog/${Constants.BUSINESS_ID}',
),
SizedBox(width: 15.0,),
@@ -126,7 +132,8 @@ class DesktopAppBarMenu extends StatelessWidget {
TextLink(
S.of(context).login,
'/login',
color: Colors.white,
color: Colors.white60,
hoverColor: Colors.white,
selected: currentRoute == '/login',
),
],