Skip to content

Commit edf7d3f

Browse files
committed
update eth addy to banking/change fuego repo
1 parent 47d62a2 commit edf7d3f

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

.github/workflows/flutter-desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
- name: Build fuego from source
168168
run: |
169169
# Clone fuego from newpath branch
170-
git clone -b newpath https://github.com/usexfg/fuego.git fuego-source
170+
git clone -b newpath https://github.com/colinritman/fuego.git fuego-source
171171
cd fuego-source
172172
173173
# Install build dependencies
@@ -262,7 +262,7 @@ jobs:
262262
- name: Build fuego from source
263263
run: |
264264
# Clone fuego from newpath branch
265-
git clone -b newpath https://github.com/usexfg/fuego.git fuego-source
265+
git clone -b newpath https://github.com/colinritman/fuego.git fuego-source
266266
cd fuego-source
267267
268268
# Install build dependencies

.github/workflows/xfg-wallet-desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ jobs:
261261
- name: Build fuego from source
262262
run: |
263263
# Clone fuego from newpath branch
264-
git clone -b newpath https://github.com/usexfg/fuego.git fuego-source
264+
git clone -b newpath https://github.com/colinritman/fuego.git fuego-source
265265
cd fuego-source
266266
267267
# Install build dependencies
@@ -423,7 +423,7 @@ jobs:
423423
- name: Build fuego from source
424424
run: |
425425
# Clone fuego from newpath branch
426-
git clone -b newpath https://github.com/usexfg/fuego.git fuego-source
426+
git clone -b newpath https://github.com/colinritman/fuego.git fuego-source
427427
cd fuego-source
428428
429429
# Install build dependencies

lib/screens/main/main_screen.dart

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ class _MainScreenState extends State<MainScreen> {
2121
const HomeScreen(),
2222
const MessagingScreen(),
2323
const BankingScreen(),
24-
const ElderfierScreen(),
25-
const SettingsScreen(),
2624
const BurnDepositsScreen(),
25+
const SettingsScreen(),
26+
const ElderfierScreen(),
2727
];
2828

2929
@override
@@ -55,18 +55,18 @@ class _MainScreenState extends State<MainScreen> {
5555
index: 0,
5656
),
5757
_buildNavItem(
58-
icon: Icons.account_balance,
59-
label: 'CD Banking',
58+
icon: Icons.message,
59+
label: 'Messages',
6060
index: 1,
6161
),
6262
_buildNavItem(
63-
icon: Icons.message,
64-
label: 'Messages',
63+
icon: Icons.account_balance,
64+
label: 'Banking',
6565
index: 2,
6666
),
6767
_buildNavItem(
68-
icon: Icons.account_tree,
69-
label: 'Elderfiers',
68+
icon: Icons.local_fire_department,
69+
label: 'Mint Ξmbers',
7070
index: 3,
7171
),
7272
_buildNavItem(
@@ -75,8 +75,8 @@ class _MainScreenState extends State<MainScreen> {
7575
index: 4,
7676
),
7777
_buildNavItem(
78-
icon: Icons.local_fire_department,
79-
label: 'Mint Ξmbers',
78+
icon: Icons.account_tree,
79+
label: 'Elderfiers',
8080
index: 5,
8181
),
8282
],
@@ -93,7 +93,7 @@ class _MainScreenState extends State<MainScreen> {
9393
required int index,
9494
}) {
9595
final isSelected = _currentIndex == index;
96-
96+
9797
return GestureDetector(
9898
onTap: () {
9999
setState(() {
@@ -103,7 +103,7 @@ class _MainScreenState extends State<MainScreen> {
103103
child: Container(
104104
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
105105
decoration: BoxDecoration(
106-
color: isSelected
106+
color: isSelected
107107
? AppTheme.primaryColor.withOpacity(0.1)
108108
: Colors.transparent,
109109
borderRadius: BorderRadius.circular(20),
@@ -130,4 +130,4 @@ class _MainScreenState extends State<MainScreen> {
130130
),
131131
);
132132
}
133-
}
133+
}

0 commit comments

Comments
 (0)