Compare commits
2 Commits
cde40ef293
...
679f4c94d9
| Author | SHA1 | Date | |
|---|---|---|---|
| 679f4c94d9 | |||
| 8bf2b9e3dd |
@@ -11,8 +11,8 @@ class CustomTheme {
|
|||||||
static Color onBoxColor = const Color(0xFF181818);
|
static Color onBoxColor = const Color(0xFF181818);
|
||||||
static Color boxBorder = const Color(0xFF272727);
|
static Color boxBorder = const Color(0xFF272727);
|
||||||
static const Color textColor = Colors.white;
|
static const Color textColor = Colors.white;
|
||||||
static Color navBarItemSelectedColor = primaryColor.withValues(green: 0.4);
|
static Color navBarItemSelectedColor = primaryColor.withGreen(100);
|
||||||
static Color navBarItemUnselectedColor = Colors.white.withValues(alpha: 0.6);
|
static Color navBarItemUnselectedColor = Colors.grey.shade400;
|
||||||
|
|
||||||
// ==================== Border Radius ====================
|
// ==================== Border Radius ====================
|
||||||
static const double standardBorderRadius = 12.0;
|
static const double standardBorderRadius = 12.0;
|
||||||
|
|||||||
@@ -66,19 +66,19 @@ class _MainMenuButtonState extends State<MainMenuButton>
|
|||||||
color: Colors.white,
|
color: Colors.white,
|
||||||
borderRadius: BorderRadius.circular(30),
|
borderRadius: BorderRadius.circular(30),
|
||||||
),
|
),
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 18, vertical: 15),
|
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 14),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
if (widget.icon != null) ...[
|
if (widget.icon != null) ...[
|
||||||
Icon(widget.icon, size: 28, color: Colors.black),
|
Icon(widget.icon, size: 26, color: Colors.black),
|
||||||
const SizedBox(width: 7),
|
const SizedBox(width: 7),
|
||||||
],
|
],
|
||||||
Text(
|
Text(
|
||||||
widget.text,
|
widget.text,
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontSize: 20,
|
fontSize: 18,
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
color: Colors.black,
|
color: Colors.black,
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -96,7 +96,7 @@ class _NavbarItemState extends State<NavbarItem>
|
|||||||
color: widget.isSelected
|
color: widget.isSelected
|
||||||
? CustomTheme.navBarItemSelectedColor
|
? CustomTheme.navBarItemSelectedColor
|
||||||
: CustomTheme.navBarItemUnselectedColor,
|
: CustomTheme.navBarItemUnselectedColor,
|
||||||
size: 26,
|
size: 32,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 4),
|
const SizedBox(height: 4),
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
name: game_tracker
|
name: game_tracker
|
||||||
description: "Game Tracking App for Card Games"
|
description: "Game Tracking App for Card Games"
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
version: 0.0.1+153
|
version: 0.0.1+160
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
|
|||||||
Reference in New Issue
Block a user