change text color on sidebar

pull/2/head
axtlos 3 years ago
parent 7002f3efa8
commit 4bfa794208
No known key found for this signature in database
GPG Key ID: C642EA4B2F4096BE

@ -70,7 +70,7 @@ class _JadeguiState extends State<Jadegui> {
label: Text( label: Text(
'Welcome', 'Welcome',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),
@ -86,7 +86,7 @@ class _JadeguiState extends State<Jadegui> {
label: Text( label: Text(
'Location', 'Location',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),
@ -102,7 +102,7 @@ class _JadeguiState extends State<Jadegui> {
label: Text( label: Text(
'Keymap', 'Keymap',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),
@ -118,7 +118,7 @@ class _JadeguiState extends State<Jadegui> {
label: Text( label: Text(
'Users', 'Users',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),
@ -128,13 +128,13 @@ class _JadeguiState extends State<Jadegui> {
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(255, 169, 0, 255),
), ),
selectedIcon: Icon( selectedIcon: Icon(
Icons.desktop_windows_outlined, Icons.desktop_windows,
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(255, 169, 0, 255),
), ),
label: Text( label: Text(
'Desktop', 'Desktop',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),
@ -150,7 +150,7 @@ class _JadeguiState extends State<Jadegui> {
label: Text( label: Text(
'Misc', 'Misc',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),
@ -166,7 +166,7 @@ class _JadeguiState extends State<Jadegui> {
label: Text( label: Text(
'Partitioning', 'Partitioning',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),
@ -182,7 +182,7 @@ class _JadeguiState extends State<Jadegui> {
label: Text( label: Text(
'Summary', 'Summary',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),
@ -198,7 +198,7 @@ class _JadeguiState extends State<Jadegui> {
label: Text( label: Text(
'Installing', 'Installing',
style: TextStyle( style: TextStyle(
color: Color.fromARGB(255, 169, 0, 255), color: Color.fromARGB(100, 255, 255, 255),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
), ),

Loading…
Cancel
Save